diff options
author | Michael Januszewski <spock@gentoo.org> | 2004-09-10 14:30:08 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2004-09-10 14:30:08 +0000 |
commit | 6b4a4576753e6a2ff90f9810fc8f7e66825dbb02 (patch) | |
tree | 2059d1e5661ac9580d8d51aa2d9b78e8dc6aa51c /net-www | |
parent | added support for the new ssp patch (diff) | |
download | gentoo-2-6b4a4576753e6a2ff90f9810fc8f7e66825dbb02.tar.gz gentoo-2-6b4a4576753e6a2ff90f9810fc8f7e66825dbb02.tar.bz2 gentoo-2-6b4a4576753e6a2ff90f9810fc8f7e66825dbb02.zip |
Marked 0.9.2_rc4 stable on x86. Removed old ebuilds.
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/elinks/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/elinks/elinks-0.4.2.ebuild | 90 | ||||
-rw-r--r-- | net-www/elinks/elinks-0.4.3_rc2.ebuild | 92 | ||||
-rw-r--r-- | net-www/elinks/elinks-0.9.1.ebuild | 95 | ||||
-rw-r--r-- | net-www/elinks/elinks-0.9.2_rc3.ebuild | 99 | ||||
-rw-r--r-- | net-www/elinks/elinks-0.9.2_rc4.ebuild | 4 | ||||
-rw-r--r-- | net-www/elinks/files/digest-elinks-0.4.2 | 2 | ||||
-rw-r--r-- | net-www/elinks/files/digest-elinks-0.4.3_rc2 | 2 | ||||
-rw-r--r-- | net-www/elinks/files/digest-elinks-0.9.1 | 2 | ||||
-rw-r--r-- | net-www/elinks/files/digest-elinks-0.9.2_rc3 | 2 |
10 files changed, 8 insertions, 387 deletions
diff --git a/net-www/elinks/ChangeLog b/net-www/elinks/ChangeLog index 78ffce42df49..24387c59234d 100644 --- a/net-www/elinks/ChangeLog +++ b/net-www/elinks/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/elinks # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/ChangeLog,v 1.31 2004/09/03 23:24:08 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/ChangeLog,v 1.32 2004/09/10 14:30:08 spock Exp $ + + 10 Sep 2004; Michal Januszewski <spock@gentoo.org> -elinks-0.4.2.ebuild, + -elinks-0.4.3_rc2.ebuild, -elinks-0.9.1.ebuild, -elinks-0.9.2_rc3.ebuild, + elinks-0.9.2_rc4.ebuild: + Marked 0.9.2_rc4 stable on x86. Removed old ebuilds. 04 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> elinks-0.4.2.ebuild, elinks-0.4.3_rc2.ebuild, elinks-0.9.1-r1.ebuild, diff --git a/net-www/elinks/elinks-0.4.2.ebuild b/net-www/elinks/elinks-0.4.2.ebuild deleted file mode 100644 index 34c8560e7faf..000000000000 --- a/net-www/elinks/elinks-0.4.2.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/elinks-0.4.2.ebuild,v 1.13 2004/09/03 23:24:08 pvdabeel Exp $ - -IUSE="gpm zlib ssl ipv6 X nls lua" - -DESCRIPTION="Advanced and well-established text-mode web browser" -HOMEPAGE="http://elinks.or.cz" -SRC_URI="http://elinks.or.cz/download/${P}.tar.bz2 - mirror://gentoo/${P}.conf.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc" - -DEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=sys-apps/portage-2.0.45-r3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - X? ( virtual/x11 ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( =dev-lang/lua-4.0* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 )" - -RDEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=app-arch/gzip-1.3.3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( =dev-lang/lua-4.0* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 ) - X? ( virtual/x11 )" - -src_unpack() { - unpack ${A} - cd ${WORKDIR} - - mv ${P}.conf ${PN}.conf - if ! use nls; then - # Build with only english support - echo 'english' > ${S}/intl/index.txt - cd ${S}/intl && ./gen-intl - fi -} - -src_compile() { - # NOTE about GNUTSL SSL support (from the README -- 25/12/2002) - # As GNUTLS is not yet 100% stable and its support in ELinks is not so well - # tested yet, it's recommended for users to give a strong preference to OpenSSL whenever possible. - - econf --sysconfdir=/etc/elinks \ - --enable-leds \ - `use_with gpm` \ - `use_with zlib` \ - `use_with ssl openssl` \ - `use_with X x` \ - `use_enable ipv6` \ - `use_with lua` || die "econf failed" - - emake || die "compile problem" -} - -src_install() { - dobin src/elinks - doman elinks.1 elinks.conf.5 elinkskeys.5 - - insopts -m 644 ; insinto /etc/elinks - doins ${WORKDIR}/elinks.conf - newins contrib/keybind-full.conf keybind-full.sample - newins contrib/keybind.conf keybind.conf.sample - - dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SITES THANKS TODO doc/*.* - docinto contrib ; dodoc contrib/{README,completion.tcsh,colws.diff,elinks[-.]vim*} - docinto contrib/lua ; dodoc contrib/lua/{*.lua,elinks-remote} - docinto contrib/conv ; dodoc contrib/conv/*.* -} - -pkg_postinst() { - einfo "This ebuild provides a default config for ELinks." - einfo "Please check /etc/elinks/elinks.conf" - einfo - einfo "You may want to convert your html.cfg and links.cfg of Links or older ELinks versions" - einfo "to the new ELinks elinks.conf using /usr/share/doc/${PF}/contrib/conv/conf-links2elinks.pl" - einfo - einfo "Please have a look at /etc/elinks/keybind-full.sample and" - einfo "/etc/elinks/keybind.conf.sample for some bindings examples." - echo -} diff --git a/net-www/elinks/elinks-0.4.3_rc2.ebuild b/net-www/elinks/elinks-0.4.3_rc2.ebuild deleted file mode 100644 index 0bdaf6ef5361..000000000000 --- a/net-www/elinks/elinks-0.4.3_rc2.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/elinks-0.4.3_rc2.ebuild,v 1.10 2004/09/03 23:24:08 pvdabeel Exp $ - -IUSE="gpm zlib ssl ipv6 X nls lua" - -MY_P=${P/_/} -S=${WORKDIR}/${MY_P} -DESCRIPTION="Advanced and well-established text-mode web browser" -HOMEPAGE="http://elinks.or.cz" -SRC_URI="http://elinks.or.cz/download/${MY_P}.tar.bz2 - mirror://gentoo/${P}.conf.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc ~sparc" - -DEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=sys-apps/portage-2.0.45-r3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - X? ( virtual/x11 ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( =dev-lang/lua-4.0* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 )" - -RDEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=app-arch/gzip-1.3.3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( =dev-lang/lua-4.0* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 ) - X? ( virtual/x11 )" - -src_unpack() { - unpack ${A} - cd ${WORKDIR} - - mv ${P}.conf ${PN}.conf - if ! use nls; then - # Build with only english support - echo 'english' > ${S}/intl/index.txt - cd ${S}/intl && ./gen-intl - fi -} - -src_compile() { - # NOTE about GNUTSL SSL support (from the README -- 25/12/2002) - # As GNUTLS is not yet 100% stable and its support in ELinks is not so well - # tested yet, it's recommended for users to give a strong preference to OpenSSL whenever possible. - - econf --sysconfdir=/etc/elinks \ - --enable-leds \ - `use_with gpm` \ - `use_with zlib` \ - `use_with ssl openssl` \ - `use_with X x` \ - `use_enable ipv6` \ - `use_with lua` || die "econf failed" - - emake || die "compile problem" -} - -src_install() { - dobin src/elinks - doman elinks.1 elinks.conf.5 elinkskeys.5 - - insopts -m 644 ; insinto /etc/elinks - doins ${WORKDIR}/elinks.conf - newins contrib/keybind-full.conf keybind-full.sample - newins contrib/keybind.conf keybind.conf.sample - - dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SITES THANKS TODO doc/*.* - docinto contrib ; dodoc contrib/{README,completion.tcsh,colws.diff,elinks[-.]vim*} - docinto contrib/lua ; dodoc contrib/lua/{*.lua,elinks-remote} - docinto contrib/conv ; dodoc contrib/conv/*.* -} - -pkg_postinst() { - einfo "This ebuild provides a default config for ELinks." - einfo "Please check /etc/elinks/elinks.conf" - einfo - einfo "You may want to convert your html.cfg and links.cfg of Links or older ELinks versions" - einfo "to the new ELinks elinks.conf using /usr/share/doc/${PF}/contrib/conv/conf-links2elinks.pl" - einfo - einfo "Please have a look at /etc/elinks/keybind-full.sample and" - einfo "/etc/elinks/keybind.conf.sample for some bindings examples." - echo -} diff --git a/net-www/elinks/elinks-0.9.1.ebuild b/net-www/elinks/elinks-0.9.1.ebuild deleted file mode 100644 index 7369a11bedcd..000000000000 --- a/net-www/elinks/elinks-0.9.1.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/elinks-0.9.1.ebuild,v 1.11 2004/09/03 23:24:08 pvdabeel Exp $ - -IUSE="gpm zlib ssl ipv6 X lua guile" - -MY_P=${P/_/} -S=${WORKDIR}/${MY_P} -DESCRIPTION="Advanced and well-established text-mode web browser" -HOMEPAGE="http://elinks.or.cz" -SRC_URI="http://elinks.or.cz/download/${MY_P}.tar.bz2 - http://dev.gentoo.org/~spock/portage/distfiles/${P}.conf.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc amd64" - -DEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=sys-apps/portage-2.0.45-r3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - X? ( virtual/x11 ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( >=dev-lang/lua-4* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 ) - guile? ( >=dev-util/guile-1.6.4-r1 )" - -RDEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=app-arch/gzip-1.3.3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( >=dev-lang/lua-4* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 ) - X? ( virtual/x11 ) - guile? ( >=dev-util/guile-1.6.4-r1 )" - -src_unpack() { - unpack ${A} - cd ${WORKDIR} - - mv ${P}.conf ${PN}.conf -} - -src_compile() { - # NOTE about GNUTSL SSL support (from the README -- 25/12/2002) - # As GNUTLS is not yet 100% stable and its support in ELinks is not so well - # tested yet, it's recommended for users to give a strong preference to OpenSSL whenever possible. - - econf --sysconfdir=/etc/elinks \ - --enable-leds \ - `use_with gpm` \ - `use_with zlib` \ - `use_with ssl openssl` \ - `use_with X x` \ - `use_enable ipv6` \ - `use_with lua` \ - `use_with guile` || die - - emake || die "compile problem" -} - -src_install() { - - einstall || die - - insopts -m 644 ; insinto /etc/elinks - doins ${WORKDIR}/elinks.conf - newins contrib/keybind-full.conf keybind-full.sample - newins contrib/keybind.conf keybind.conf.sample - - dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SITES THANKS TODO doc/*.* - docinto contrib ; dodoc contrib/{README,colws.diff,elinks[-.]vim*} - insinto /usr/share/doc/${PF}/contrib/lua ; doins contrib/lua/{*.lua,elinks-remote} - insinto /usr/share/doc/${PF}/contrib/conv ; doins contrib/conv/*.* - insinto /usr/share/doc/${PF}/contrib/guile ; doins contrib/guile/*.scm -} - -pkg_postinst() { - einfo "This ebuild provides a default config for ELinks." - einfo "Please check /etc/elinks/elinks.conf" - einfo - einfo "You may want to convert your html.cfg and links.cfg of Links or older ELinks versions" - einfo "to the new ELinks elinks.conf using /usr/share/doc/${PF}/contrib/conv/conf-links2elinks.pl" - einfo - einfo "Please have a look at /etc/elinks/keybind-full.sample and" - einfo "/etc/elinks/keybind.conf.sample for some bindings examples." - einfo - einfo "If you have compiled ELinks with Guile support, you will have to" - einfo "copy internal-hooks.scm and user-hooks.scm from /usr/share/doc/${PF}/contrib/guile/" - einfo "to ~/.elinks/" - echo -} diff --git a/net-www/elinks/elinks-0.9.2_rc3.ebuild b/net-www/elinks/elinks-0.9.2_rc3.ebuild deleted file mode 100644 index 527e7c2d14e9..000000000000 --- a/net-www/elinks/elinks-0.9.2_rc3.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/elinks-0.9.2_rc3.ebuild,v 1.2 2004/07/24 00:00:19 kloeri Exp $ - -IUSE="gpm zlib ssl ipv6 X lua guile" - -MY_P=${P/_/} -S=${WORKDIR}/${MY_P} -DESCRIPTION="Advanced and well-established text-mode web browser" -HOMEPAGE="http://elinks.or.cz" -SRC_URI="http://elinks.or.cz/download/${MY_P}.tar.bz2 - http://dev.gentoo.org/~spock/portage/distfiles/elinks-0.9.1.conf.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha" - -DEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=sys-apps/portage-2.0.45-r3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - X? ( virtual/x11 ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( >=dev-lang/lua-4* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 ) - guile? ( >=dev-util/guile-1.6.4-r1 )" - -RDEPEND="virtual/libc - >=app-arch/bzip2-1.0.2* - >=dev-libs/expat-1.95.4* - >=app-arch/gzip-1.3.3 - ssl? ( >=dev-libs/openssl-0.9.6g ) - zlib? ( >=sys-libs/zlib-1.1.4 ) - lua? ( >=dev-lang/lua-4* ) - gpm? ( >=sys-libs/ncurses-5.2* >=sys-libs/gpm-1.20.0-r5 ) - X? ( virtual/x11 ) - guile? ( >=dev-util/guile-1.6.4-r1 )" - -src_unpack() { - unpack ${A} - cd ${WORKDIR} - - mv ${P}.conf ${PN}.conf - sed -i -e 's:/\* #define CONFIG_256_COLORS \*/:#define CONFIG_256_COLORS:' ${S}/feature.h -} - -src_compile() { - # NOTE about GNUTSL SSL support (from the README -- 25/12/2002) - # As GNUTLS is not yet 100% stable and its support in ELinks is not so well - # tested yet, it's recommended for users to give a strong preference to OpenSSL whenever possible. - - econf --sysconfdir=/etc/elinks \ - --enable-leds \ - `use_with gpm` \ - `use_with zlib` \ - `use_with ssl openssl` \ - `use_with X x` \ - `use_enable ipv6` \ - `use_with lua` \ - `use_with guile` || die - - emake || die "compile problem" -} - -src_install() { - - einstall || die - - insopts -m 644 ; insinto /etc/elinks - doins ${WORKDIR}/elinks.conf - newins contrib/keybind-full.conf keybind-full.sample - newins contrib/keybind.conf keybind.conf.sample - - dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SITES THANKS TODO doc/*.* - docinto contrib ; dodoc contrib/{README,colws.diff,elinks[-.]vim*} - insinto /usr/share/doc/${PF}/contrib/lua ; doins contrib/lua/{*.lua,elinks-remote} - insinto /usr/share/doc/${PF}/contrib/conv ; doins contrib/conv/*.* - insinto /usr/share/doc/${PF}/contrib/guile ; doins contrib/guile/*.scm -} - -pkg_postinst() { - einfo "This ebuild provides a default config for ELinks." - einfo "Please check /etc/elinks/elinks.conf" - einfo - einfo "You may want to convert your html.cfg and links.cfg of Links or older ELinks versions" - einfo "to the new ELinks elinks.conf using /usr/share/doc/${PF}/contrib/conv/conf-links2elinks.pl" - einfo - einfo "Please have a look at /etc/elinks/keybind-full.sample and" - einfo "/etc/elinks/keybind.conf.sample for some bindings examples." - einfo - einfo "If you have compiled ELinks with Guile support, you will have to" - einfo "copy internal-hooks.scm and user-hooks.scm from /usr/share/doc/${PF}/contrib/guile/" - einfo "to ~/.elinks/" - einfo - einfo "You will have to set your TERM variable to 'xterm-256color' to be able to" - einfo "see 256 colors in elinks." - echo -} diff --git a/net-www/elinks/elinks-0.9.2_rc4.ebuild b/net-www/elinks/elinks-0.9.2_rc4.ebuild index 24d1986f67e5..d4d4872aab7c 100644 --- a/net-www/elinks/elinks-0.9.2_rc4.ebuild +++ b/net-www/elinks/elinks-0.9.2_rc4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/elinks-0.9.2_rc4.ebuild,v 1.1 2004/08/02 17:47:58 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/elinks/elinks-0.9.2_rc4.ebuild,v 1.2 2004/09/10 14:30:08 spock Exp $ IUSE="gpm zlib ssl ipv6 X lua guile" @@ -13,7 +13,7 @@ SRC_URI="http://elinks.or.cz/download/${MY_P}.tar.bz2 SLOT="0" LICENSE="GPL-2" -KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha" +KEYWORDS="x86 ~ppc ~sparc ~amd64 ~alpha" DEPEND="virtual/libc >=app-arch/bzip2-1.0.2* diff --git a/net-www/elinks/files/digest-elinks-0.4.2 b/net-www/elinks/files/digest-elinks-0.4.2 deleted file mode 100644 index 607ee85e81a9..000000000000 --- a/net-www/elinks/files/digest-elinks-0.4.2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 bb77dcd59968634477f5a6d5f07ccd5e elinks-0.4.2.tar.bz2 760309 -MD5 ea3df881970bfd6f7bbed3039c22e8a6 elinks-0.4.2.conf.bz2 5398 diff --git a/net-www/elinks/files/digest-elinks-0.4.3_rc2 b/net-www/elinks/files/digest-elinks-0.4.3_rc2 deleted file mode 100644 index 08d3f57889ab..000000000000 --- a/net-www/elinks/files/digest-elinks-0.4.3_rc2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 55756587dccd17ae5f057025c16f3224 elinks-0.4.3rc2.tar.bz2 767044 -MD5 ea3df881970bfd6f7bbed3039c22e8a6 elinks-0.4.3_rc2.conf.bz2 5398 diff --git a/net-www/elinks/files/digest-elinks-0.9.1 b/net-www/elinks/files/digest-elinks-0.9.1 deleted file mode 100644 index b5f52615e965..000000000000 --- a/net-www/elinks/files/digest-elinks-0.9.1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 78b536a9e9607ed522229b70172706a8 elinks-0.9.1.tar.bz2 1851755 -MD5 ea3df881970bfd6f7bbed3039c22e8a6 elinks-0.9.1.conf.bz2 5398 diff --git a/net-www/elinks/files/digest-elinks-0.9.2_rc3 b/net-www/elinks/files/digest-elinks-0.9.2_rc3 deleted file mode 100644 index d566d5b9dabd..000000000000 --- a/net-www/elinks/files/digest-elinks-0.9.2_rc3 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 97e840c6d832f3f0447dd997cd2c6615 elinks-0.9.2rc3.tar.bz2 1857461 -MD5 ea3df881970bfd6f7bbed3039c22e8a6 elinks-0.9.1.conf.bz2 5398 |