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
133
134
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools prefix toolchain-funcs
MY_P="${P/_p/+git}"
MY_PV="${PV/_p/+git}"
DESCRIPTION="Text based WWW browser, supports tables and frames"
HOMEPAGE="https://github.com/tats/w3m"
SRC_URI="https://github.com/tats/w3m/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}/${P/_p/-git}"
LICENSE="w3m"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
IUSE="fbcon gdk-pixbuf gpm imlib l10n_ja lynxkeymap nls nntp ssl unicode X xface"
REQUIRED_USE="
fbcon? ( ?? ( gdk-pixbuf imlib ) )
X? ( ?? ( gdk-pixbuf imlib ) )
"
RDEPEND="
dev-libs/boehm-gc:=
sys-libs/ncurses:0=
sys-libs/zlib
gdk-pixbuf? (
x11-libs/gdk-pixbuf
X? ( x11-libs/gdk-pixbuf-xlib )
)
!gdk-pixbuf? (
imlib? ( media-libs/imlib2[X?] )
)
gpm? ( sys-libs/gpm )
ssl? ( dev-libs/openssl:0= )
X? (
x11-base/xorg-proto
x11-libs/libXdmcp
x11-libs/libXext
)
xface? ( media-libs/compface )
"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${PN}-0.5.3_p20210102-restore-gettext-macro.patch
"${FILESDIR}"/${PN}-0.5.3_p20210102-fix-configure-gettext.patch
)
src_prepare() {
default
sed -i "/^AR=/s:ar:$(tc-getAR):" {.,${PN}img,libwc}/Makefile.in || die
hprefixify acinclude.m4
AT_NOEAUTOHEADER="yes" AT_M4DIR="m4" eautoreconf
}
src_configure() {
local myconf=()
local image imagelib
if use gdk-pixbuf ; then
imagelib="gtk3"
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() {
default
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
docinto de
dodoc doc-de/README*
docinto html/de
dodoc doc-de/*.html
docinto ja
dodoc doc-jp/{HISTORY,README,keymap,menu}*
newdoc Bonus/README README.Bonus
docinto html/ja
dodoc doc-jp/*.html
}
|