|
Revision 36693, 1.6 KB
(checked in by ryandesign@…, 8 months ago)
|
|
gettext: enable parallel build
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name gettext |
|---|
| 6 | version 0.17 |
|---|
| 7 | revision 3 |
|---|
| 8 | categories devel |
|---|
| 9 | maintainers ryandesign |
|---|
| 10 | homepage http://www.gnu.org/software/gettext/ |
|---|
| 11 | master_sites gnu |
|---|
| 12 | platforms darwin freebsd linux |
|---|
| 13 | use_parallel_build yes |
|---|
| 14 | |
|---|
| 15 | description \ |
|---|
| 16 | GNU gettext package |
|---|
| 17 | |
|---|
| 18 | long_description \ |
|---|
| 19 | This is the GNU gettext package. It is interesting for \ |
|---|
| 20 | authors or maintainers of other packages or programs \ |
|---|
| 21 | which they want to see internationalized. As one \ |
|---|
| 22 | step the handling of messages in different languages \ |
|---|
| 23 | should be implemented. For this task GNU gettext \ |
|---|
| 24 | provides the needed tools and library functions. |
|---|
| 25 | |
|---|
| 26 | checksums \ |
|---|
| 27 | md5 58a2bc6d39c0ba57823034d55d65d606 \ |
|---|
| 28 | sha1 c51803d9f745f6ace36bd09c0486d5735ce399cf \ |
|---|
| 29 | rmd160 36df9d4ad2848ec26729781e0d7e25b419e7d261 |
|---|
| 30 | |
|---|
| 31 | patchfiles \ |
|---|
| 32 | patch-gettext-tools-Makefile.in |
|---|
| 33 | |
|---|
| 34 | configure.cppflags \ |
|---|
| 35 | -no-cpp-precomp |
|---|
| 36 | |
|---|
| 37 | configure.args \ |
|---|
| 38 | --disable-csharp \ |
|---|
| 39 | --without-emacs \ |
|---|
| 40 | --with-included-gettext \ |
|---|
| 41 | --with-included-glib \ |
|---|
| 42 | --with-included-libcroco \ |
|---|
| 43 | --with-included-libxml |
|---|
| 44 | |
|---|
| 45 | depends_lib \ |
|---|
| 46 | port:libiconv \ |
|---|
| 47 | port:ncurses \ |
|---|
| 48 | port:expat |
|---|
| 49 | |
|---|
| 50 | test.run yes |
|---|
| 51 | test.target check |
|---|
| 52 | |
|---|
| 53 | platform darwin 6 { |
|---|
| 54 | depends_lib-append \ |
|---|
| 55 | lib:libdl:dlcompat |
|---|
| 56 | } |
|---|
| 57 | |
|---|
| 58 | post-destroot { |
|---|
| 59 | if {[file exists ${destroot}${prefix}/lib/charset.alias]} { |
|---|
| 60 | delete ${destroot}${prefix}/lib/charset.alias |
|---|
| 61 | } |
|---|
| 62 | if {[file exists ${destroot}${prefix}/share/locale/locale.alias]} { |
|---|
| 63 | delete ${destroot}${prefix}/share/locale/locale.alias |
|---|
| 64 | } |
|---|
| 65 | } |
|---|
| 66 | |
|---|
| 67 | livecheck.check regex |
|---|
| 68 | livecheck.url http://ftp.gnu.org/gnu/gettext/?C=M&O=D |
|---|
| 69 | livecheck.regex ${name}-(\[0-9.\]+)\\.tar |
|---|