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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit autotools prefix vcs-snapshot
MY_REL="git20161120"
MY_P="${P}.${MY_REL}"
DESCRIPTION="Text based WWW browser, supports tables and frames"
HOMEPAGE="https://github.com/tats/w3m"
SRC_URI="https://github.com/tats/${PN}/archive/v${PV}+${MY_REL}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="w3m"
SLOT="0"
KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
IUSE="X fbcon gdk-pixbuf gpm imlib l10n_de l10n_ja libressl lynxkeymap nls nntp ssl unicode xface"
RDEPEND="dev-libs/boehm-gc:=
sys-libs/ncurses:0=
sys-libs/zlib
X? (
x11-libs/libXdmcp
x11-libs/libXext
)
gdk-pixbuf? ( x11-libs/gdk-pixbuf[X?] )
!gdk-pixbuf? (
imlib? ( media-libs/imlib2[X?] )
)
gpm? ( sys-libs/gpm )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)
xface? ( media-libs/compface )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}/${MY_P}"
REQUIRED_USE="X? ( ?? ( gdk-pixbuf imlib ) )
fbcon? ( ?? ( gdk-pixbuf imlib ) )"
PATCHES=(
"${FILESDIR}/${PN}-img-fb.patch"
"${FILESDIR}/${PN}-time.patch"
)
src_prepare() {
default
sed -i "/^AR=/s:ar:$(tc-getAR):" {.,${PN}img,libwc}/Makefile.in
hprefixify acinclude.m4
eautoconf
}
src_configure() {
local myconf=()
local image imagelib
if use gdk-pixbuf; then
imagelib="gtk2"
elif use imlib; then
imagelib="imlib2"
fi
if [[ -n "${imagelib}" ]]; then
use X && image="${image}${image:+,}x11"
use fbcon && image="${image}${image:+,}fb"
fi
# emacs-w3m doesn't like "--enable-m17n --disable-unicode,"
# so we better enable or disable both. Default to enable
# m17n and unicode, see bug #47046.
if use l10n_ja; then
myconf+=( --enable-japanese=$(usex unicode U E) )
else
myconf+=( --with-charset=$(usex unicode UTF-8 US-ASCII) )
fi
# lynxkeymap IUSE flag. bug #49397
myconf+=( --enable-keymap=$(usex lynxkeymap lynx ${PN}) )
econf \
$(use_enable gpm mouse) \
$(use_enable nls) \
$(use_enable nntp) \
$(use_enable ssl digest-auth) \
$(use_enable xface) \
$(use_with ssl) \
--enable-image=${image:-no} \
--enable-m17n \
--enable-unicode \
--with-browser="${EPREFIX}/usr/bin/xdg-open" \
--with-editor="${EPREFIX}/usr/bin/vi" \
--with-imagelib="${imagelib:-no}" \
--with-mailer="${EPREFIX}/bin/mail" \
--without-migemo \
--with-termlib=yes \
"${myconf[@]}"
}
src_install() {
emake DESTDIR="${D}" install
einstalldocs
# http://www.sic.med.tohoku.ac.jp/~satodai/w3m-dev/200307.month/3944.html
insinto /etc/${PN}
newins "${FILESDIR}"/${PN}.mailcap mailcap
insinto /usr/share/${PN}/Bonus
doins Bonus/{*.{cgi,rb},html*,makeref}
docinto en
dodoc doc/{HISTORY,README,keymap,menu}*
newdoc Bonus/README.eng README.Bonus
docinto html/en
dodoc doc/*.html
if use l10n_de; then
docinto de
dodoc doc-de/README*
docinto html/de
dodoc doc-de/*.html
else
rm -rf "${ED}"/usr/share/man/de
fi
if use l10n_ja; then
docinto ja
dodoc doc-jp/{HISTORY,README,keymap,menu}*
newdoc Bonus/README README.Bonus
docinto html/ja
dodoc doc-jp/*.html
else
rm -rf "${ED}"/usr/share/man/ja
fi
}
|