Ticket #17012: Portfile

File Portfile, 1.5 KB (added by jmroot (Joshua Root), 15 years ago)

abiword 2.6.5

Line 
1# $Id: Portfile 36964 2008-05-21 12:08:44Z jmr@macports.org $
2
3PortSystem 1.0
4
5name            abiword
6version         2.6.5
7description     A word processor with gnome support.
8long_description        A word processor with gnome support.
9maintainers     nomaintainer
10categories      editors textproc aqua
11platforms       macosx
12homepage        http://www.abisource.com/
13master_sites    http://www.abisource.org/downloads/abiword/${version}/source \
14                http://www.nl.abisource.com/downloads/abiword/${version}/source \
15                http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles
16checksums       md5 edce76a1da515dfc102a0e030f722002 \
17                sha1 f848e82bcda6b0ece5ce206b516a475af9aa5fa7 \
18                rmd160 406c1dd6a84bfcf8111d39b23e0a4d3361eda87e
19
20patchfiles  missing-nibs.diff
21
22depends_lib     \
23        port:enchant \
24        port:expat \
25        port:fontconfig \
26                port:fribidi \
27                port:ImageMagick \
28                port:jpeg \
29                port:libiconv \
30                port:libpng \
31                port:popt \
32                port:wv \
33                port:zlib
34
35configure.args  \
36                --enable-Cocoa \
37                --enable-printing \
38                --mandir=${prefix}/share/man \
39                --with-expat=${prefix} \
40                --with-fribidi=${prefix} \
41                --with-ImageMagick=${prefix} \
42                --with-libiconv=${prefix} \
43                --with-libjpeg-prefix=${prefix} \
44                --with-libpng=${prefix} \
45                --with-popt=${prefix} \
46                --with-zlib=${prefix} \
47                --without-epath \
48                --disable-gnome \
49                --disable-gnomeui \
50                --disable-gnomevfs \
51                --disable-gucharmap
52
53post-destroot {
54    xinstall -d ${destroot}${applications_dir}
55    move ${destroot}${prefix}/AbiWord.app ${destroot}${applications_dir}/AbiWord.app
56}