Ticket #3928: Portfile.update.2.diff
File Portfile.update.2.diff, 2.0 KB (added by dports@…, 19 years ago) |
---|
-
Portfile.rrdtool1.
old new 2 2 PortSystem 1.0 3 3 4 4 name rrdtool 5 version 1.0.49 6 revision 2 5 version 1.2.10 7 6 categories net 8 7 maintainers rshaw@opendarwin.org 9 8 description Round Robin Database 10 9 long_description RRDtool is a system to store and display time-series data 11 10 homepage http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/ 12 11 platforms darwin openbsd 13 master_sites ${homepage}/pub/rrdtool-1.0.x/ \ 14 http://www.fastmirrors.org/rrdtool/ 15 checksums md5 fbe492dbf3d68abb1d86c2322e7ed44a 12 master_sites http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/ 13 checksums md5 ebf90d351126a225e87dbb88da7635f9 16 14 17 15 depends_lib path:${prefix}/bin/perl:perl5.8 \ 16 path:${prefix}/lib/libtcl.dylib:tcl \ 18 17 lib:libz.1:zlib \ 19 18 lib:libpng.3:libpng \ 20 path:${prefix}/lib/libtcl.dylib:tcl 19 lib:libfreetype:freetype \ 20 lib:libart_lgpl:libart_lgpl \ 21 lib:libcgi:cgilib 21 22 22 23 patchfiles patch-configure \ 23 patch-Makefile.in \ 24 patch-contrib-Makefile.in \ 25 patch-contrib-trytime-Makefile.in \ 26 patch-doc-Makefile.in \ 24 patch-tcl-Makefile.in \ 27 25 patch-examples-Makefile.in \ 28 patch-src-Makefile.in \ 29 patch-tcl-Makefile.in 26 patch-doc-Makefile.in 30 27 31 configure.args --prefix=${prefix} \ 32 --mandir=${prefix}/share/man \ 33 --with-tcllib=${prefix}/lib \ 34 --enable-shared=yes \ 35 --enable-local-zlib \ 36 --enable-local-libpng 28 configure.args --prefix=${prefix} \ 29 CPPFLAGS="-I/opt/local/include \ 30 -I${prefix}/include/libart-2.0 \ 31 -I${prefix}/include/freetype2 \ 32 -I${prefix}/include/libpng" \ 33 CFLAGS="-I${prefix}/include" \ 34 LDFLAGS="-L${prefix}/lib" \ 35 --enable-perl-site-install \ 36 --with-tcllib=${prefix}/lib \ 37 --disable-python 37 38 38 39 build.type gnu 39 40 40 destroot.target install site-tcl-install 41 post-install { 42 ui_msg "\nSee ${prefix}/share/examples/rrdtool for example code\n" 43 } 44 41 45