Revision: 124937 https://trac.macports.org/changeset/124937 Author: larryv@macports.org Date: 2014-08-31 14:20:34 -0700 (Sun, 31 Aug 2014) Log Message: ----------- lynx: Update to 2.8.8rel.2 And: - Enable NLS and add relevant dependencies. - Explicitly depend on libidn to avoid opportunistic linking. (Plus, URL translation is a good feature to have.) - Install documentation and help files into ${prefix}/share/doc (explicitly, otherwise they end up in ${prefix}/share) and make Lynx's help use them. Modified Paths: -------------- trunk/dports/www/lynx/Portfile Modified: trunk/dports/www/lynx/Portfile =================================================================== --- trunk/dports/www/lynx/Portfile 2014-08-31 21:20:28 UTC (rev 124936) +++ trunk/dports/www/lynx/Portfile 2014-08-31 21:20:34 UTC (rev 124937) @@ -4,9 +4,8 @@ PortSystem 1.0 name lynx -set milestone 2.8.7 +set milestone 2.8.8 version ${milestone}rel.2 -revision 1 categories www platforms darwin license GPL-2 @@ -19,22 +18,31 @@ emulators. homepage http://lynx.isc.org/ -depends_lib port:ncurses +depends_lib port:gettext \ + port:libiconv \ + port:libidn \ + port:ncurses master_sites http://lynx.isc.org/current/ \ ftp://lynx.isc.org/current/ distname [strsed ${distname} {g/-//}] use_bzip2 yes -checksums rmd160 553e232aebaa09f88a6a190a1dfe7debb89f0a41 \ - sha256 301bda96ad3cd5032805e8d5315a42061a11e472e3d3a7baee3a2879517ef627 +checksums rmd160 a683f9c163a6c343bde53ffde99dbecce4e41b02 \ + sha256 6980e75cf0d677fd52c116e2e0dfd3884e360970c88c8356a114338500d5bee7 worksrcdir ${name}[strsed ${milestone} {g/\./-/}] patchfiles patch-LYCharSets.c -configure.args --enable-ipv6 +configure.args --datadir=${prefix}/share/doc \ + --enable-htmlized-cfg \ + --enable-ipv6 \ + --enable-local-docs \ + --enable-nls +destroot.target-append install-doc install-help + if {![variant_isset gnutls]} { default_variants +ssl }