diff options
-rw-r--r-- | app-i18n/skktools/Manifest | 1 | ||||
-rw-r--r-- | app-i18n/skktools/skktools-1.3.3_p20170305.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/app-i18n/skktools/Manifest b/app-i18n/skktools/Manifest index 499f81a9502b..88c58e1c8fb3 100644 --- a/app-i18n/skktools/Manifest +++ b/app-i18n/skktools/Manifest @@ -1,2 +1 @@ -DIST skktools-1.3.3_p20170305.tar.gz 483715 BLAKE2B 0de2cb906e8433f66e706f0aa4dd8c4900343b48bfb9bb24aee4927f583650f54132c2a3bb607c17cefb0f0e686bcf8a0f4bd6ac07b6a9a71c0bd870eda587a7 SHA512 f6e9041fecf8c28a84c3996ca120371528c034eeca3695cb224b4cf225e8dab9e69969d7fb955112cd1e9c1e80c2ba8e2aef4f0eb81f55374dd626402482c235 DIST skktools-1.3.4.tar.gz 482860 BLAKE2B f9e822531f8f715291e55ec6dec0eeb31683dc72efc7ba73621cfd0c29f0c5147cbef8256d44848792b8a1601c1878321b2dc0260df9d32d0e5e18eb65220987 SHA512 8749dfc4f18474db860d8b7cd85fadfc00327b199addb31a339aa78dd66cb98032429664bdad4b47176b5b64b156b7264bc35a284861f6b9ec8cc9979d4d5ce1 diff --git a/app-i18n/skktools/skktools-1.3.3_p20170305.ebuild b/app-i18n/skktools/skktools-1.3.3_p20170305.ebuild deleted file mode 100644 index b7fa7d4f12d0..000000000000 --- a/app-i18n/skktools/skktools-1.3.3_p20170305.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit elisp-common vcs-snapshot - -EGIT_COMMIT="e14d98e734d2fdff611385c7df65826e94d929db" - -DESCRIPTION="SKK utilities to manage dictionaries" -HOMEPAGE="http://openlab.jp/skk/" -SRC_URI="https://github.com/skk-dev/skktools/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="emacs" - -RDEPEND="dev-libs/glib:2 - sys-libs/gdbm - emacs? ( >=app-editors/emacs-23.1:* )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( ChangeLog README.md ) -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 - done - - insinto /usr/share/${PN} - doins *.awk *.scm - rm -rf convert2skk/obsolete - 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 -} |