diff options
author | Aron Griffis <agriffis@gentoo.org> | 2002-04-26 17:59:19 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2002-04-26 17:59:19 +0000 |
commit | 2b15528389e0de06ec3612d8b02f8585bdcbe9e5 (patch) | |
tree | 2542bef92fee2503380f915dc2051140ec8aa4fb /net-www/w3m | |
parent | cosmetic userid/groupid fixo (diff) | |
download | historical-2b15528389e0de06ec3612d8b02f8585bdcbe9e5.tar.gz historical-2b15528389e0de06ec3612d8b02f8585bdcbe9e5.tar.bz2 historical-2b15528389e0de06ec3612d8b02f8585bdcbe9e5.zip |
Updated to version 0.3 with optional imlib-based image support.
Diffstat (limited to 'net-www/w3m')
-rw-r--r-- | net-www/w3m/ChangeLog | 24 | ||||
-rw-r--r-- | net-www/w3m/files/digest-w3m-0.3 | 1 | ||||
-rw-r--r-- | net-www/w3m/w3m-0.3.ebuild | 94 |
3 files changed, 111 insertions, 8 deletions
diff --git a/net-www/w3m/ChangeLog b/net-www/w3m/ChangeLog index 1cb3aa813bcd..0eb06e2f1d32 100644 --- a/net-www/w3m/ChangeLog +++ b/net-www/w3m/ChangeLog @@ -1,13 +1,21 @@ # 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.1 2002/02/01 21:53:36 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/ChangeLog,v 1.2 2002/04/26 17:59:19 agriffis Exp $ + +*w3m-0.3 (26 Apr 2002) + + 26 Apr 2002; Aron Griffis <agriffis@gentoo.org> w3m-0.3.ebuild : + + Updated to version 0.3 with optional image support (depends on "use + imlib"). *w3m-0.2.2 (1 Feb 2002) - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that + the comments should well explained and written in clean English. The + details about writing correct changelogs are explained in the + skel.ChangeLog file which you can find in the root directory of the + portage repository. diff --git a/net-www/w3m/files/digest-w3m-0.3 b/net-www/w3m/files/digest-w3m-0.3 new file mode 100644 index 000000000000..9f6e24c4479d --- /dev/null +++ b/net-www/w3m/files/digest-w3m-0.3 @@ -0,0 +1 @@ +MD5 d1dab828926801901276fbe1bbfedd5a w3m-0.3.tar.gz 1061297 diff --git a/net-www/w3m/w3m-0.3.ebuild b/net-www/w3m/w3m-0.3.ebuild new file mode 100644 index 000000000000..ef2019aebd69 --- /dev/null +++ b/net-www/w3m/w3m-0.3.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/w3m-0.3.ebuild,v 1.1 2002/04/26 17:59:19 agriffis Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Text based WWW browser, supports tables and frames" +SRC_URI="http://prdownloads.sourceforge.net/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 )" + +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" + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + dodoc doc/* README* + doman doc/w3m.1 +} |