From 70e75097637528e642d7f5d5bc618488929932e0 Mon Sep 17 00:00:00 2001 From: Michael Nazaroff Date: Fri, 2 Aug 2002 18:09:09 +0000 Subject: Cleaned out old ebuilds, did a little imlib use fix --- net-www/w3m/ChangeLog | 11 +++- net-www/w3m/files/digest-w3m-0.3-r3 | 1 - net-www/w3m/files/digest-w3m-0.3-r4 | 1 - net-www/w3m/w3m-0.3-r3.ebuild | 105 -------------------------------- net-www/w3m/w3m-0.3-r4.ebuild | 117 ------------------------------------ net-www/w3m/w3m-0.3-r5.ebuild | 4 +- 6 files changed, 12 insertions(+), 227 deletions(-) delete mode 100644 net-www/w3m/files/digest-w3m-0.3-r3 delete mode 100644 net-www/w3m/files/digest-w3m-0.3-r4 delete mode 100644 net-www/w3m/w3m-0.3-r3.ebuild delete mode 100644 net-www/w3m/w3m-0.3-r4.ebuild (limited to 'net-www') diff --git a/net-www/w3m/ChangeLog b/net-www/w3m/ChangeLog index 4acf27c3b47b..ba96e6356ae8 100644 --- a/net-www/w3m/ChangeLog +++ b/net-www/w3m/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for net-www/w3m # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/ChangeLog,v 1.7 2002/07/21 04:40:53 naz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/ChangeLog,v 1.8 2002/08/02 18:09:09 naz Exp $ + +w3m-0.3-r5 (28 Jul 2002) + + 28 Jul 2002; Michael Nazaroff w3m-0.3-r5.ebuild: + + Removed some of the old dirty ebuilds since it was getting cluttered around + here. Keeping one old one for future reference since I still need to work on + the gpm issue mentioned earlier in this ChangeLog. Updated imlib use variable + so it pulls down the needed version. w3m-0.3-r5 (20 Jul 2002) diff --git a/net-www/w3m/files/digest-w3m-0.3-r3 b/net-www/w3m/files/digest-w3m-0.3-r3 deleted file mode 100644 index 9f6e24c4479d..000000000000 --- a/net-www/w3m/files/digest-w3m-0.3-r3 +++ /dev/null @@ -1 +0,0 @@ -MD5 d1dab828926801901276fbe1bbfedd5a w3m-0.3.tar.gz 1061297 diff --git a/net-www/w3m/files/digest-w3m-0.3-r4 b/net-www/w3m/files/digest-w3m-0.3-r4 deleted file mode 100644 index 9f6e24c4479d..000000000000 --- a/net-www/w3m/files/digest-w3m-0.3-r4 +++ /dev/null @@ -1 +0,0 @@ -MD5 d1dab828926801901276fbe1bbfedd5a w3m-0.3.tar.gz 1061297 diff --git a/net-www/w3m/w3m-0.3-r3.ebuild b/net-www/w3m/w3m-0.3-r3.ebuild deleted file mode 100644 index 6b8157ead313..000000000000 --- a/net-www/w3m/w3m-0.3-r3.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/w3m-0.3-r3.ebuild,v 1.1 2002/07/14 19:25:43 naz Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="Text based WWW browser, supports tables and frames" -SRC_URI="mirror://sourceforge/w3m/${P}.tar.gz" -HOMEPAGE="http://w3m.sourceforge.net/" - -DEPEND="virtual/glibc - >=sys-libs/ncurses-5.2-r3 - >=sys-libs/zlib-1.1.3-r2 - gpm? ( >=sys-libs/gpm-1.19.3-r5 ) - ssl? ( >=dev-libs/openssl-0.9.6b ) - imlib? ( media-libs/imlib )" - -SLOT="0" -LICENSE="w3m" -KEYWORDS="x86" - -src_compile() { - # It seems to be hard to configure this program in any reasonable - # way. - ( - # Which directory do you want to put the binary? - echo /usr/bin - # Which directory do you want to put the support binary files? - echo /usr/lib/w3m - # Which directory do you want to put the helpfile? - echo /usr/share/w3m - # Which directory do you want to put the system wide w3m - # configuration file? - echo /etc/w3m - # Which language do you prefer? - # 1 - Japanese (charset ISO-2022-JP, EUC-JP, Shift_JIS) - # 2 - English (charset US_ASCII, ISO-8859-1, etc.) - echo 2 - # Do you want to use Lynx-like key binding? - echo n - # Let's do some configurations. Choose config option among the list. - # - # 1 - Baby model (no color, no menu, no mouse, no cookie, no SSL) - # 2 - Little model (color, menu, no mouse, no cookie, no SSL) - # 3 - Mouse model (color, menu, mouse, no cookie, no SSL) - # 4 - Cookie model (color, menu, mouse, cookie, no SSL) - # 5 - Monster model (with everything; you need openSSL library) - # 6 - Customize - # - # Which? - echo 5 - # Do you want SSL verification support? - # (Your SSL library must be version 0.8 or later) - use ssl &>/dev/null && echo y || echo n - # Digest Auth support [y]? - echo y - # Inline image support (you need Imlib library) [n]? - use imlib &>/dev/null && echo y || echo n - # ANSI color escape sequences support [n]? - echo y - # Use Migemo (Roma-ji search; Please see - # http://migemo.namazu.org/) [n]? - echo n - # External URI loader support [y]? - echo y - # Use w3mmail.cgi [y]? - echo y - # NNTP support [y]? - echo n - # Gopher support [y]? - echo n - # Use alarm support code [y]? - echo y - # Use mark operation [y]? - echo y - # Input your favorite editor program. - echo /usr/bin/vi - # Input your favorite external browser program. - echo /usr/bin/mozilla - # Input your favorite C-compiler. - echo gcc - # Input your favorite C flags. - printf "%s\n" "$CFLAGS" - # Which terminal library do you want to use? (type "none" if you - # do not need one) - printf "%s\n" "-lncurses" - # Input additional LD flags other than listed above, if any: - # (default: -lncurses) : - echo - ) | ./configure || die "configure failed" - - # binary executables come prebuilt for 80386! - # clean it up and be sure to remake for ANY arch - - cd ${S}/gc - make clean - cd - - - emake || die "emake failed" -} - -src_install() { - make DESTDIR=${D} install || die "make install failed" - dodoc doc/* README* - doman doc/w3m.1 -} diff --git a/net-www/w3m/w3m-0.3-r4.ebuild b/net-www/w3m/w3m-0.3-r4.ebuild deleted file mode 100644 index 63339376e8e1..000000000000 --- a/net-www/w3m/w3m-0.3-r4.ebuild +++ /dev/null @@ -1,117 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/w3m-0.3-r4.ebuild,v 1.1 2002/07/17 16:52:15 stubear Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="Text based WWW browser, supports tables and frames" -SRC_URI="mirror://sourceforge/w3m/${P}.tar.gz" -HOMEPAGE="http://w3m.sourceforge.net/" - -DEPEND="virtual/glibc - >=sys-libs/ncurses-5.2-r3 - >=sys-libs/zlib-1.1.3-r2 - gpm? ( >=sys-libs/gpm-1.19.3-r5 ) - ssl? ( >=dev-libs/openssl-0.9.6b ) - imlib? ( media-libs/imlib )" - -SLOT="0" -LICENSE="w3m" -KEYWORDS="x86" - -src_compile() { - # It seems to be hard to configure this program in any reasonable - # way. - ( - # Which directory do you want to put the binary? - echo /usr/bin - # Which directory do you want to put the support binary files? - echo /usr/lib/w3m - # Which directory do you want to put the helpfile? - echo /usr/share/w3m - # Which directory do you want to put the system wide w3m - # configuration file? - echo /etc/w3m - # Which language do you prefer? - # 1 - Japanese (charset ISO-2022-JP, EUC-JP, Shift_JIS) - # 2 - English (charset US_ASCII, ISO-8859-1, etc.) - use cjk &>/dev/null && echo 1 || echo 2 - # What is your Kanji display - use cjk &>/dev/null && echo E - # Use 2-byte character for table border, etc - use cjk &>/dev/null && echo n - # Do you want to use Lynx-like key binding? - echo n - # Let's do some configurations. Choose config option among the list. - # - # 1 - Baby model (no color, no menu, no mouse, no cookie, no SSL) - # 2 - Little model (color, menu, no mouse, no cookie, no SSL) - # 3 - Mouse model (color, menu, mouse, no cookie, no SSL) - # 4 - Cookie model (color, menu, mouse, cookie, no SSL) - # 5 - Monster model (with everything; you need openSSL library) - # 6 - Customize - # - # Which? - echo 6 - # Do you want color ESC sequence for Kterm/pxvt - echo n - # Use mouse (requires xterm/kterm/gpm/sysmouse) - echo y - # Use popup menu - echo y - # Use cookie - echo y - # Do you want SSL verification support? - # (Your SSL library must be version 0.8 or later) - use ssl &>/dev/null && echo y || echo n - # Digest Auth support [y]? - echo y - # Inline image support (you need Imlib library) [n]? - use imlib &>/dev/null && echo y || echo n - # ANSI color escape sequences support [n]? - echo y - # Use Migemo (Roma-ji search; Please see - # http://migemo.namazu.org/) [n]? - echo n - # External URI loader support [y]? - echo y - # Use w3mmail.cgi [y]? - echo y - # NNTP support [y]? - echo n - # Gopher support [y]? - echo n - # Use alarm support code [y]? - echo y - # Use mark operation [y]? - echo y - # Input your favorite editor program. - echo /usr/bin/vi - # Input your favorite external browser program. - echo /usr/bin/mozilla - # Input your favorite C-compiler. - echo gcc - # Input your favorite C flags. - printf "%s\n" "$CFLAGS" - # Which terminal library do you want to use? (type "none" if you - # do not need one) - printf "%s\n" "-lncurses" - # Input additional LD flags other than listed above, if any: - # (default: -lncurses) : - echo - ) | ./configure || die "configure failed" - - # binary executables come prebuilt for 80386! - # clean it up and be sure to remake for ANY arch - - cd ${S}/gc - make clean - cd - - - emake || die "emake failed" -} - -src_install() { - make DESTDIR=${D} install || die "make install failed" - dodoc doc/* README* - doman doc/w3m.1 -} diff --git a/net-www/w3m/w3m-0.3-r5.ebuild b/net-www/w3m/w3m-0.3-r5.ebuild index 1613d15d11bd..7f9ec8e7f917 100644 --- a/net-www/w3m/w3m-0.3-r5.ebuild +++ b/net-www/w3m/w3m-0.3-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/w3m-0.3-r5.ebuild,v 1.1 2002/07/21 04:40:53 naz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/w3m-0.3-r5.ebuild,v 1.2 2002/08/02 18:09:09 naz Exp $ S=${WORKDIR}/${P} DESCRIPTION="Text based WWW browser, supports tables and frames" @@ -12,7 +12,7 @@ DEPEND="virtual/glibc >=sys-libs/zlib-1.1.3-r2 gpm? ( >=sys-libs/gpm-1.19.3-r5 ) ssl? ( >=dev-libs/openssl-0.9.6b ) - imlib? ( media-libs/imlib )" + imlib? ( >=media-libs/imlib-1.9.14 )" SLOT="0" LICENSE="w3m" -- cgit v1.2.3-65-gdbad