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.
52 lines
1.2 KiB
52 lines
1.2 KiB
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit elisp autotools readme.gentoo-r1
|
|
|
|
DESCRIPTION="emacs-w3m is an interface program of w3m on Emacs"
|
|
HOMEPAGE="http://emacs-w3m.namazu.org/"
|
|
SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
IUSE="l10n_ja"
|
|
|
|
DEPEND="virtual/w3m"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
SITEFILE="70${PN}-gentoo.el"
|
|
|
|
src_prepare() {
|
|
mv configure.{in,ac} || die
|
|
sed -i -e '/^configure:/,+2d' Makefile.in || die
|
|
eapply_user
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
emake all-en $(use l10n_ja && echo all-ja)
|
|
}
|
|
|
|
src_install() {
|
|
emake lispdir="${ED}${SITELISP}/${PN}" \
|
|
infodir="${ED}/usr/share/info" \
|
|
ICONDIR="${ED}${SITEETC}/${PN}" \
|
|
install-en $(use l10n_ja && echo install-ja) install-icons
|
|
|
|
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
|
|
dodoc ChangeLog* NEWS README
|
|
use l10n_ja && dodoc BUGS.ja NEWS.ja README.ja
|
|
|
|
DOC_CONTENTS="If you want to use the shimbun library, please emerge
|
|
app-emacs/apel and app-emacs/flim."
|
|
readme.gentoo_create_doc
|
|
}
|