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-semi |
---|
6 | version 1.14 |
---|
7 | categories www |
---|
8 | maintainers vishketan |
---|
9 | platforms darwin |
---|
10 | supported_archs noarch |
---|
11 | |
---|
12 | description SEMI is a library to provide MIME feature for GNU Emacs. |
---|
13 | long_description \ |
---|
14 | SEMI is a library to provide MIME feature for GNU Emacs. MIME is a \ |
---|
15 | proposed internet standard for including content and headers other \ |
---|
16 | than (ASCII) plain text in messages. \ |
---|
17 | |
---|
18 | homepage http://www.kanji.zinbun.kyoto-u.ac.jp/~tomo/elisp/SEMI/index.html.ja.iso-2022-jp |
---|
19 | master_sites ${homepage} |
---|
20 | |
---|
21 | fetch.type git |
---|
22 | git.url https://github.com/wanderlust/semi.git |
---|
23 | |
---|
24 | depends_lib port:emacs \ |
---|
25 | port:emacs-apel\ |
---|
26 | port:emacs-flim |
---|
27 | |
---|
28 | build.cmd make EMACS=${prefix}/bin/emacs PREFIX=${destroot}${prefix} LISPDIR=${destroot}${prefix}/share/emacs/site-lisp |
---|
29 | |
---|
30 | variant emacs_app description "If your Emacs is emacs-app" { |
---|
31 | depends_lib-append port:emacs-app |
---|
32 | depends_lib-delete port:emacs |
---|
33 | build.cmd make EMACS=${applications_dir}/Emacs.app/Contents/MacOS/Emacs PREFIX=${destroot}${prefix} LISPDIR=${prefix}/share/emacs/site-lisp |
---|
34 | } |
---|
35 | |
---|
36 | build.target |
---|
37 | |
---|
38 | use_configure no |
---|
39 | |
---|
40 | destroot { |
---|
41 | xinstall -m 755 -d ${destroot}${prefix}/share/emacs/site-lisp/semi |
---|
42 | eval xinstall -m 640 [glob ${worksrcpath}/*.el*] \ |
---|
43 | ${destroot}${prefix}/share/emacs/site-lisp/semi |
---|
44 | } |
---|