1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | name emacs-wl-devel |
---|
6 | version devel |
---|
7 | categories www |
---|
8 | maintainers vishketan |
---|
9 | platforms darwin |
---|
10 | supported_archs noarch |
---|
11 | |
---|
12 | description Wanderlust -- Yet Another Message Interface on Emacsen |
---|
13 | long_description \ |
---|
14 | Wanderlust is a mail/news management system with IMAP4rev1 support for Emacs.\ |
---|
15 | \ |
---|
16 | Features: \ |
---|
17 | \ |
---|
18 | * Implementation in elisp only.\ |
---|
19 | * Support of IMAP4rev1, NNTP, POP(POP3/APOP), MH and Maildir.\ |
---|
20 | * Integrated access to messages based on Folder Specifications like Mew.\ |
---|
21 | * Key bindings and mark processing like Mew.\ |
---|
22 | * Management of threads and unread messages.\ |
---|
23 | * Folder mode to select and edit subscribed folders.\ |
---|
24 | * Message cache, Disconnected Operation.\ |
---|
25 | * MH-like Fcc (Fcc: %Backup is possible).\ |
---|
26 | * Full support of MIME (by SEMI).\ |
---|
27 | * Draft editing of mail and news as a same interface.\ |
---|
28 | * Icon based interface for the list of Folder (XEmacs and Emacs 21).\ |
---|
29 | * Skip fetching of a large message part of MIME(IMAP4).\ |
---|
30 | * Server side searching (IMAP4), internationalized searching is available.\ |
---|
31 | * Virtual folder.\ |
---|
32 | * Compressed folder.\ |
---|
33 | * Automatic expiration of old messages.\ |
---|
34 | * Automatic refiling.\ |
---|
35 | * Draft templates.\ |
---|
36 | |
---|
37 | homepage http://www.gohome.org/wl/ |
---|
38 | master_sites ${homepage} |
---|
39 | |
---|
40 | fetch.type git |
---|
41 | git.url git://github.com/wanderlust/wanderlust.git |
---|
42 | |
---|
43 | depends_lib port:emacs \ |
---|
44 | port:emacs-apel\ |
---|
45 | port:emacs-flim\ |
---|
46 | port:emacs-semi |
---|
47 | |
---|
48 | build.cmd make FLAGS="-batch -q" EMACS=${prefix}/bin/emacs PREFIX=${destroot}${prefix} LISPDIR=${prefix}/share/emacs/site-lisp INFODIR=${destroot}${prefix}/share/info |
---|
49 | |
---|
50 | variant emacs_app description "If your Emacs is emacs-app" { |
---|
51 | depends_lib-append port:emacs-app |
---|
52 | depends_lib-delete port:emacs |
---|
53 | build.cmd make FLAGS="-batch -q" EMACS=${applications_dir}/Emacs.app/Contents/MacOS/Emacs PREFIX=${destdir}${prefix} LISPDIR=${destroot}${prefix}/share/emacs/site-lisp INFODIR=${destroot}${prefix}/share/info |
---|
54 | } |
---|
55 | |
---|
56 | build.target |
---|
57 | build.target-append info |
---|
58 | destroot.target install |
---|
59 | destroot.target-append install-info |
---|
60 | |
---|
61 | post-activate { |
---|
62 | system "${prefix}/bin/install-info ${prefix}/share/info/wl.info ${prefix}/share/info/dir" |
---|
63 | system "${prefix}/bin/install-info ${prefix}/share/info/wl-ja.info ${prefix}/share/info/dir" |
---|
64 | } |
---|
65 | |
---|
66 | use_configure no |
---|
67 | |
---|
68 | pre-deactivate { |
---|
69 | system "${prefix}/bin/install-info --delete ${prefix}/share/info/wl.info ${prefix}/share/info/dir" |
---|
70 | system "${prefix}/bin/install-info --delete ${prefix}/share/info/wl-ja.info ${prefix}/share/info/dir" |
---|
71 | } |
---|