Ticket #11347: htmldoc-1.8.27.diff
File htmldoc-1.8.27.diff, 2.0 KB (added by pipping@…, 18 years ago) |
---|
-
dports/textproc/htmldoc/Portfile
2 2 3 3 PortSystem 1.0 4 4 name htmldoc 5 version 1.8.2 45 version 1.8.27 6 6 categories textproc 7 7 maintainers mij@macports.org 8 8 description Converts HTML files to PDF or PostScript … … 14 14 indexed HTML files. It also generates files on-the-fly \ 15 15 for web applications or for batch jobs. 16 16 17 master_sites http://ftp.easysw.com/pub/htmldoc/${version}/ \ 17 master_sites ftp://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/htmldoc/${version}/ \ 18 http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/htmldoc/${version}/ \ 19 ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/htmldoc/${version}/ \ 20 ftp://ftp3.easysw.com/pub/htmldoc/${version}/ \ 18 21 ftp://ftp.easysw.com/pub/htmldoc/${version}/ 19 22 20 checksums md5 d781c605f2a370246db1f5d70a41bbe4 23 checksums md5 35589e7b8fe9c54e11be87cd5aec4dcc \ 24 sha1 472908e0aafed1cedfbacd8ed3168734aebdec4b \ 25 rmd160 9605a5894675439f5fae405fb060972e19f33c7e 21 26 22 distname ${ portname}-${portversion}-source23 worksrcdir ${ portname}-${portversion}27 distname ${name}-${version}-source 28 worksrcdir ${name}-${version} 24 29 use_bzip2 yes 25 30 26 depends_lib lib:libjpeg.62:jpeg lib:libpng.3:libpng lib:libz.1:zlib31 depends_lib port:jpeg port:libpng port:zlib 27 32 28 33 configure.env CFLAGS="-I${prefix}/include" \ 29 34 CXXFLAGS="-I${prefix}/include" \ … … 41 46 ui_error "Only one of +ssl, +gnutls, or +cdsassl can be specified!" 42 47 exit(1) 43 48 } 44 depends_lib-append lib:libssl.0.9:openssl49 depends_lib-append port:openssl 45 50 configure.args-delete --disable-ssl 46 51 configure.args-append --enable-openssl --disable-gnutls --disable-cdsassl 47 52 } … … 51 56 ui_error "Only one of +ssl, +gnutls, or +cdsassl can be specified!" 52 57 exit 1 53 58 } 54 depends_lib-append lib:libgnutls:gnutls59 depends_lib-append port:gnutls 55 60 configure.args-delete --disable-ssl 56 61 configure.args-append --disable-openssl --enable-gnutls --disable-cdsassl 57 62 }