You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.1 KiB
130 lines
3.1 KiB
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="6"
|
|
|
|
inherit autotools prefix toolchain-funcs vcs-snapshot
|
|
|
|
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/${PN}/archive/v${MY_PV}.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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
|
IUSE="X fbcon gdk-pixbuf gpm imlib l10n_de l10n_ja lynxkeymap nls nntp ssl unicode xface"
|
|
REQUIRED_USE="X? ( ?? ( gdk-pixbuf imlib ) )
|
|
fbcon? ( ?? ( gdk-pixbuf imlib ) )"
|
|
|
|
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? ( x11-libs/gdk-pixbuf-xlib )
|
|
)
|
|
!gdk-pixbuf? (
|
|
imlib? ( media-libs/imlib2[X?] )
|
|
)
|
|
gpm? ( sys-libs/gpm )
|
|
ssl? (
|
|
dev-libs/openssl:0=
|
|
)
|
|
xface? ( media-libs/compface )"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-img-fb.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() {
|
|
default
|
|
|
|
# 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
|
|
}
|