diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2008-02-06 00:13:34 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2008-02-06 00:13:34 +0000 |
commit | a0c28638bd68067273049247448909c57e626f02 (patch) | |
tree | 36a365d5552141cea3ed326eb4cedaba1b293a8d /www-client/lynx | |
parent | Adding USE=regex to the dev-scheme/guile package.use since it's required for ... (diff) | |
download | historical-a0c28638bd68067273049247448909c57e626f02.tar.gz historical-a0c28638bd68067273049247448909c57e626f02.tar.bz2 historical-a0c28638bd68067273049247448909c57e626f02.zip |
clean up
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'www-client/lynx')
-rw-r--r-- | www-client/lynx/ChangeLog | 8 | ||||
-rw-r--r-- | www-client/lynx/lynx-2.8.6-r1.ebuild | 76 |
2 files changed, 6 insertions, 78 deletions
diff --git a/www-client/lynx/ChangeLog b/www-client/lynx/ChangeLog index c41e79326054..f9bdd21e3ed3 100644 --- a/www-client/lynx/ChangeLog +++ b/www-client/lynx/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/lynx -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/lynx/ChangeLog,v 1.69 2007/07/12 08:46:46 uberlord Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/lynx/ChangeLog,v 1.70 2008/02/06 00:11:36 opfer Exp $ + + 06 Feb 2008; Christian Faulhammer <opfer@gentoo.org> + -lynx-2.8.6-r1.ebuild: + clean up 12 Jul 2007; Roy Marples <uberlord@gentoo.org> lynx-2.8.6-r1.ebuild, lynx-2.8.6-r2.ebuild: diff --git a/www-client/lynx/lynx-2.8.6-r1.ebuild b/www-client/lynx/lynx-2.8.6-r1.ebuild deleted file mode 100644 index f054f9f8a804..000000000000 --- a/www-client/lynx/lynx-2.8.6-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2007 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.13 2007/07/12 08:46:46 uberlord 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" -SRC_URI="ftp://lynx.isc.org/current/${MY_P}rel.2.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc ~sparc-fbsd 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/* -} |