blob: b757779da2e28aebe835906232efa3ef2f80e304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/w3m/w3m-0.4.1-r1.ebuild,v 1.3 2003/09/06 01:54:09 msterret Exp $
inherit eutils
IUSE="gpm cjk imlib ssl"
DESCRIPTION="Text based WWW browser, supports tables and frames"
SRC_URI="mirror://sourceforge/w3m/${P}.tar.gz"
HOMEPAGE="http://w3m.sourceforge.net/"
SLOT="0"
LICENSE="w3m"
KEYWORDS="x86 ~alpha"
DEPEND=">=sys-libs/ncurses-5.2-r3
>=sys-libs/zlib-1.1.3-r2
imlib? ( >=media-libs/imlib-1.9.8 media-libs/compface )
gpm? ( >=sys-libs/gpm-1.19.3-r5 )
ssl? ( >=dev-libs/openssl-0.9.6b )"
PROVIDE="virtual/textbrowser"
src_unpack() {
unpack ${A}
cd ${S}
if use alpha; then
epatch ${FILESDIR}/w3m-0.4-alpha.patch || die "epatch failed"
fi
}
src_compile() {
local myuse
myuse="use_cookie=y use_ansi_color=y"
local myconf
myconf="-prefix=/usr -mandir=/usr/share/man -sysconfdir=/etc/w3m \
--gc-includedir=/usr/include/gc --gc-libdir=/usr/lib \
-cflags=${CFLAGS} -model=custom -nonstop"
if use cjk &>/dev/null; then
myconf="${myconf} -lang=ja -code=E"
else
myconf="${myconf} -lang=en"
fi
if use ssl &>/dev/null; then
myconf="${myconf} --ssl-includedir=/usr/include/openssl --ssl-libdir=/usr/lib"
myuse="${myuse} use_ssl=y use_ssl_verify=n use_digest_auth=y"
else
myuse="${myuse} use_ssl=n"
fi
if use gpm &>/dev/null; then
myuse="${myuse} use_mouse=y"
else
myuse="${myuse} use_mouse=n"
fi
if use imlib &>/dev/null; then
myuse="${myuse} use_image=y use_w3mimg_x11=y use_w3mimg_fb=y w3mimgdisplay_setuid=n use_xface=y"
else
myuse="${myuse} use_image=n"
fi
env ${myuse} ./configure ${myconf} || die "configure failed"
# Test to make sure the above configuration was sane
grep -q "dcc='gcc'" config.param || \
die "configure out of sync; ebuild needs an update"
# 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
}
|