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.
gentoo-overlay/app-emacs/semi/semi-1.14.6-r2.ebuild

53 lines
1.3 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit elisp eutils
DESCRIPTION="A library to provide MIME feature for GNU Emacs"
HOMEPAGE="http://git.chise.org/elisp/semi/"
SRC_URI="http://git.chise.org/elisp/dist/${PN}/${P%.*}-for-flim-1.14/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="l10n_ja"
DEPEND=">=app-emacs/apel-10.6
app-emacs/flim"
RDEPEND="${DEPEND}"
ELISP_PATCHES="${PN}-info.patch"
SITEFILE="65${PN}-gentoo.el"
src_compile() {
emake PREFIX="${ED}"/usr \
LISPDIR="${ED}/${SITELISP}" \
VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}"
${EMACS} ${EMACSFLAGS} --visit mime-ui-en.texi -f texi2info \
|| die "texi2info failed"
if use l10n_ja; then
${EMACS} ${EMACSFLAGS} \
--eval "(set-default-coding-systems 'iso-2022-jp)" \
--visit mime-ui-ja.texi -f texi2info \
|| die "texi2info failed"
fi
}
src_install() {
emake PREFIX="${ED}/usr" \
LISPDIR="${ED}/${SITELISP}" \
VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}" install
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
doinfo mime-ui-en.info
dodoc README.en ChangeLog VERSION NEWS
if use l10n_ja; then
doinfo mime-ui-ja.info
dodoc README.ja
fi
}