diff options
author | 2023-01-11 10:29:34 +0100 | |
---|---|---|
committer | 2023-01-11 10:31:02 +0100 | |
commit | 0cd1046033c9d6b70d640705da31b0461af3c611 (patch) | |
tree | f593d041c470589265b811b064bb86006edf0674 /app-i18n/skktools/skktools-1.3.4-r1.ebuild | |
parent | sec-keys/openpgp-keys-apache-tomcat: drop 10.1.2 (diff) | |
download | gentoo-0cd1046033c9d6b70d640705da31b0461af3c611.tar.gz gentoo-0cd1046033c9d6b70d640705da31b0461af3c611.tar.bz2 gentoo-0cd1046033c9d6b70d640705da31b0461af3c611.zip |
app-i18n/skktools: EAPI 8
Specify LICENSE more precisely.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-i18n/skktools/skktools-1.3.4-r1.ebuild')
-rw-r--r-- | app-i18n/skktools/skktools-1.3.4-r1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/app-i18n/skktools/skktools-1.3.4-r1.ebuild b/app-i18n/skktools/skktools-1.3.4-r1.ebuild new file mode 100644 index 000000000000..bc195d8c1cfd --- /dev/null +++ b/app-i18n/skktools/skktools-1.3.4-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp-common vcs-snapshot + +DESCRIPTION="SKK utilities to manage dictionaries" +HOMEPAGE="http://openlab.jp/skk/" +SRC_URI="https://github.com/skk-dev/skktools/archive/${P//./_}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 ~arm ~riscv x86" +IUSE="emacs" + +RDEPEND="dev-libs/glib:2 + sys-libs/gdbm + emacs? ( >=app-editors/emacs-23.1:* )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +SITEFILE="50${PN}-gentoo.el" + +src_configure() { + econf --with-gdbm +} + +src_compile() { + default + + if use emacs; then + elisp-compile *.el + fi +} + +src_install() { + default + dodoc READMEs/* + + local d + for d in convert2skk filters; do + newdoc ${d}/README.md README.${d} + rm -f ${d}/README.md || die + done + + insinto /usr/share/${PN} + doins *.{awk,scm} + rm -rf convert2skk/obsolete || die + doins -r convert2skk filters + + if use emacs; then + elisp-install ${PN} *.el{,c} + elisp-site-file-install "${FILESDIR}"/${SITEFILE} + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |