Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/devel/gettext/Portfile

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
3PortSystem          1.0
4
5name                gettext
6version             0.17
7revision            3
8categories          devel
9maintainers         ryandesign
10homepage            http://www.gnu.org/software/gettext/
11master_sites        gnu
12platforms           darwin freebsd linux
13use_parallel_build  yes
14
15description \
16        GNU gettext package
17
18long_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
26checksums \
27        md5 58a2bc6d39c0ba57823034d55d65d606 \
28        sha1 c51803d9f745f6ace36bd09c0486d5735ce399cf \
29        rmd160 36df9d4ad2848ec26729781e0d7e25b419e7d261
30
31patchfiles \
32        patch-gettext-tools-Makefile.in
33
34configure.cppflags \
35        -no-cpp-precomp
36
37configure.args \
38        --disable-csharp \
39        --without-emacs \
40        --with-included-gettext \
41        --with-included-glib \
42        --with-included-libcroco \
43        --with-included-libxml
44
45depends_lib \
46        port:libiconv \
47        port:ncurses \
48        port:expat
49
50test.run            yes
51test.target         check
52
53platform darwin 6 {
54        depends_lib-append \
55                lib:libdl:dlcompat
56}
57
58post-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
67livecheck.check     regex
68livecheck.url       http://ftp.gnu.org/gnu/gettext/?C=M&O=D
69livecheck.regex     ${name}-(\[0-9.\]+)\\.tar
Note: See TracBrowser for help on using the browser.