diff options
author | Emanuele Giaquinta <exg@gentoo.org> | 2006-10-13 12:55:39 +0000 |
---|---|---|
committer | Emanuele Giaquinta <exg@gentoo.org> | 2006-10-13 12:55:39 +0000 |
commit | 80f0febea0d8ee7d1b01a64d81b00315b587795a (patch) | |
tree | 3a1b794d0ca5de2ec793d085eb39ad6a0c91a660 /www-client/lynx/lynx-2.8.6-r1.ebuild | |
parent | Bump and correct some build time deps. GNOME_DOC_INIT implies at least versio... (diff) | |
download | gentoo-2-80f0febea0d8ee7d1b01a64d81b00315b587795a.tar.gz gentoo-2-80f0febea0d8ee7d1b01a64d81b00315b587795a.tar.bz2 gentoo-2-80f0febea0d8ee7d1b01a64d81b00315b587795a.zip |
Update to rel.2. Cleanup.
(Portage version: 2.1.2_pre2-r9)
Diffstat (limited to 'www-client/lynx/lynx-2.8.6-r1.ebuild')
-rw-r--r-- | www-client/lynx/lynx-2.8.6-r1.ebuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/www-client/lynx/lynx-2.8.6-r1.ebuild b/www-client/lynx/lynx-2.8.6-r1.ebuild new file mode 100644 index 000000000000..1f3c2c86f6b1 --- /dev/null +++ b/www-client/lynx/lynx-2.8.6-r1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/lynx/lynx-2.8.6-r1.ebuild,v 1.1 2006/10/13 12:55:39 exg Exp $ + +inherit eutils + +MY_P=${PN}${PV} +S=${WORKDIR}/${MY_P//./-} + +DESCRIPTION="An excellent console-based web browser with ssl support" +HOMEPAGE="http://lynx.browser.org/" +SRC_URI="ftp://lynx.isc.org/${MY_P}/${MY_P}rel.2.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="bzip2 cjk ipv6 nls ssl unicode" + +RDEPEND="sys-libs/ncurses + sys-libs/zlib + nls? ( virtual/libintl ) + ssl? ( >=dev-libs/openssl-0.9.6 ) + bzip2? ( app-arch/bzip2 )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +pkg_setup() { + if use unicode && ! built_with_use sys-libs/ncurses unicode; then + eerror "Installing lynx with the unicode flag requires ncurses be" + eerror "built with it as well. Please make sure your /etc/make.conf" + eerror "or /etc/portage/package.use enables it, and re-install" + eerror "ncurses with \`emerge --oneshot sys-libs/ncurses\`." + die "Re-emerge ncurses with the unicode flag" + fi +} + +src_compile() { + local myconf + use unicode && myconf="--with-screen=ncursesw" + + econf \ + --libdir=/etc/lynx \ + --enable-cgi-links \ + --enable-persistent-cookies \ + --enable-prettysrc \ + --enable-nsl-fork \ + --enable-file-upload \ + --enable-read-eta \ + --enable-color-style \ + --enable-scrollbar \ + --enable-included-msgs \ + --with-zlib \ + $(use_enable nls) \ + $(use_enable ipv6) \ + $(use_enable cjk) \ + $(use_with ssl) \ + $(use_with bzip2 bzlib) \ + ${myconf} || die + + emake -j1 || die +} + +src_install() { + make install DESTDIR="${D}" || die + + dosed "s|^HELPFILE.*$|HELPFILE:file://localhost/usr/share/doc/${PF}/lynx_help/lynx_help_main.html|" \ + /etc/lynx/lynx.cfg + dodoc CHANGES COPYHEADER PROBLEMS README + docinto docs + dodoc docs/* + docinto lynx_help + dodoc lynx_help/*.txt + dohtml -r lynx_help/* +} |