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.7_p20210613.ebuild

52 lines
1.3 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS=24.5
inherit elisp
DESCRIPTION="A library to provide MIME feature for GNU Emacs"
HOMEPAGE="https://github.com/wanderlust/semi"
GITHUB_SHA1="509f6f0bc2f5d020c63e47d9ad89410dc20bcb6f"
SRC_URI="https://github.com/wanderlust/${PN}/archive/${GITHUB_SHA1}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${GITHUB_SHA1}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="l10n_ja"
RDEPEND=">=app-emacs/apel-10.8
>=app-emacs/flim-1.14.9"
DEPEND="${RDEPEND}"
PATCHES="${FILESDIR}/${PN}-1.14.7_p20210613-info.patch"
SITEFILE="65${PN}-gentoo.el"
src_compile() {
emake
${EMACS} ${EMACSFLAGS} --visit mime-ui-en.texi -f texi2info || die
if use l10n_ja; then
${EMACS} ${EMACSFLAGS} \
--eval "(set-default-coding-systems 'iso-2022-jp)" \
--visit mime-ui-ja.texi -f texi2info || die
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
}