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-apel |
---|
6 | version 10.8 |
---|
7 | categories www |
---|
8 | maintainers vishketan |
---|
9 | platforms darwin |
---|
10 | supported_archs noarch |
---|
11 | |
---|
12 | description APEL stands for \"A Portable Emacs Library\". |
---|
13 | long_description \ |
---|
14 | APEL (A Portable Emacs Library) is a library to support to write portable Emacs Lisp programs. |
---|
15 | |
---|
16 | homepage http://kanji.zinbun.kyoto-u.ac.jp/~tomo/elisp/APEL/ |
---|
17 | master_sites ${homepage} |
---|
18 | |
---|
19 | fetch.type git |
---|
20 | git.url https://github.com/wanderlust/apel.git |
---|
21 | |
---|
22 | depends_lib port:emacs |
---|
23 | |
---|
24 | build.cmd make EMACS=${prefix}/bin/emacs PREFIX=${destroot}${prefix} |
---|
25 | |
---|
26 | variant emacs_app description "If your Emacs is emacs-app" { |
---|
27 | depends_lib-append port:emacs-app |
---|
28 | depends_lib-delete port:emacs |
---|
29 | build.cmd make EMACS=${applications_dir}/Emacs.app/Contents/MacOS/Emacs PREFIX=${destroot}${prefix} |
---|
30 | |
---|
31 | } |
---|
32 | |
---|
33 | build.target |
---|
34 | |
---|
35 | use_configure no |
---|