1 | # $Id: Portfile 20470 2006-11-03 15:26:21Z blair@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name pilot-link |
---|
5 | version 0.12.1 |
---|
6 | categories sysutils palm |
---|
7 | maintainers css@macports.org |
---|
8 | description palm-pilot libraries and tools |
---|
9 | |
---|
10 | platforms darwin |
---|
11 | homepage http://www.pilot-link.org/ |
---|
12 | master_sites http://downloads.pilot-link.org/ |
---|
13 | depends_lib lib:libiconv:libiconv \ |
---|
14 | lib:libreadline:readline \ |
---|
15 | lib:popt:popt \ |
---|
16 | lib:libpng:libpng |
---|
17 | |
---|
18 | use_bzip2 yes |
---|
19 | checksums md5 80579c6f68eb583f54294d5651c4632b |
---|
20 | |
---|
21 | configure.env CPPFLAGS='-I${prefix}/include' LDFLAGS='-L${prefix}/lib' |
---|
22 | configure.args --prefix='${prefix}' \ |
---|
23 | --libexecdir='${prefix}/lib' --mandir='${prefix}/share/man' \ |
---|
24 | --with-libpng='${prefix}' --with-libiconv='${prefix}' \ |
---|
25 | --with-pic --enable-shared --enable-static --enable-conduits |
---|
26 | |
---|
27 | post-destroot { |
---|
28 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
29 | xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING NEWS README \ |
---|
30 | ${destroot}${prefix}/share/doc/${name} |
---|
31 | } |
---|
32 | |
---|
33 | platform darwin 8 { |
---|
34 | configure.env-append CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0 CXX=/usr/bin/g++-4.0 |
---|
35 | } |
---|
36 | |
---|