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: Portfile 3 2013-06-09 05:19:50Z emotiongraphics.jp:rino $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name xyzsh |
---|
7 | categories shells |
---|
8 | version 1.4.3 |
---|
9 | revision 0 |
---|
10 | set libcurver 1.9.0 |
---|
11 | set libcmpver 1 |
---|
12 | |
---|
13 | description xyzsh - An interactive shell |
---|
14 | long_description An interactive shell features object oriented scripting with garbage collection. |
---|
15 | homepage http://sourceforge.jp/projects/xyzsh/ |
---|
16 | |
---|
17 | master_sites sourceforge_jp:${name}/58940/ |
---|
18 | checksums rmd160 efbfc5a7f3a3c9e4f8dabe58bd3672b5288120ff \ |
---|
19 | sha256 e763ee243135071331badef8223567a49bd3697b68ba415b5a6acf992624db65 |
---|
20 | extract.suffix .tgz |
---|
21 | |
---|
22 | platforms darwin |
---|
23 | license MIT |
---|
24 | maintainers emotiongraphics.jp:rino |
---|
25 | |
---|
26 | depends_lib port:libiconv \ |
---|
27 | port:ncurses \ |
---|
28 | port:oniguruma5 |
---|
29 | |
---|
30 | post-patch { |
---|
31 | reinplace \ |
---|
32 | "s:-dynamiclib:-dynamiclib -current_version ${libcurver} -compatibility_version ${libcmpver} -install_name ${prefix}/lib/lib${name}.${libcurver}.dylib:" \ |
---|
33 | ${worksrcpath}/Makefile.in |
---|
34 | } |
---|
35 | |
---|
36 | configure.args --with-optimize |
---|
37 | |
---|
38 | livecheck.type regex |
---|
39 | livecheck.url http://sourceforge.jp/projects/${name}/releases/rss |
---|
40 | livecheck.regex <title>${name}.* - (\[0-9.a-z\-\]+)</title> |
---|