summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-08-21 13:15:07 +0200
committerPacho Ramos <pacho@gentoo.org>2016-08-21 14:43:19 +0200
commit0d506975f0c4b99d0fd6ee6f1d844432148d5a79 (patch)
treef1c4c749700f788cff792c42c790cafd6c670232 /app-i18n/scim-anthy
parentvirtual/ada: gnat-gpl is being removed, bug #514074 (diff)
downloadgentoo-0d506975f0c4b99d0fd6ee6f1d844432148d5a79.tar.gz
gentoo-0d506975f0c4b99d0fd6ee6f1d844432148d5a79.tar.bz2
gentoo-0d506975f0c4b99d0fd6ee6f1d844432148d5a79.zip
app-i18n/scim-anthy: Remove broken version per hardmask message that never got fixed
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-i18n/scim-anthy')
-rw-r--r--app-i18n/scim-anthy/Manifest1
-rw-r--r--app-i18n/scim-anthy/scim-anthy-1.3.1.ebuild58
2 files changed, 0 insertions, 59 deletions
diff --git a/app-i18n/scim-anthy/Manifest b/app-i18n/scim-anthy/Manifest
index a6a31b41df31..3c877c247140 100644
--- a/app-i18n/scim-anthy/Manifest
+++ b/app-i18n/scim-anthy/Manifest
@@ -1,3 +1,2 @@
DIST scim-anthy-1.2.7-patches.tar.xz 11236 SHA256 639f4f182fac4c99c5347ec0497a141975ebe62d7a4a114dcf2c9ca628f65def SHA512 ff265547ea78912b3cb2519793fc7159d466da6bbd3cd47f63a67731207c46ba8932a5384899ffbe517bb3d91f14ee282906ee287025ae64ccee7636dd633f08 WHIRLPOOL 9efc90013d8912bec02055e5f870bde96cb589b74fae7ad75d823df7de49c8d7180422f142d29e5430195eb7c6dbd5aa0682b6ebc26362d1a08f51d20e223a4e
DIST scim-anthy-1.2.7.tar.gz 680942 SHA256 cb60070d8f6ff281a99d329c9d731f02ae16893083c9efa9970ccd7287365198 SHA512 4ece2e458b204a68392ed676134ff45f1e193fda00d5ffb219c4e947f7f069a0221b279f110bf4093a22e57c41cb1555c6be4d42bea1c9e848af06ad8e0bc2da WHIRLPOOL 1268e71f435ab222da38a4028334a8c83795fe584634d0416956e0295b389f4232e822feaf90416ac88b79e73541f3c7607da3a33222f8644c2151b984a45c7a
-DIST scim-anthy-1.3.1.tar.gz 775479 SHA256 a1fe2f5bef0107ea2c04c69c28b1660156edd667ba8c15bf72ab703220977e80 SHA512 c72cbb6a008bc28fb31fa1ab0c1707bd738a0ab724bf5a284a5b7f71432361729486457fa46addf7cb213faa3c4a6c371b0ea3be6bc6930a2541c1df148e995a WHIRLPOOL 5d1fcabab5483d8d16aac2660e01bd81d4e76943915c647425dc962b92b360e42e61e327fc0ff54c29bfcdeb2dd5d58a002e6c11b817d6df1f572e8f9bdf2645
diff --git a/app-i18n/scim-anthy/scim-anthy-1.3.1.ebuild b/app-i18n/scim-anthy/scim-anthy-1.3.1.ebuild
deleted file mode 100644
index d33053d64058..000000000000
--- a/app-i18n/scim-anthy/scim-anthy-1.3.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit libtool
-
-DESCRIPTION="Japanese input method Anthy IMEngine for SCIM"
-HOMEPAGE="http://scim-imengine.sourceforge.jp/index.cgi?cmd=view;name=SCIMAnthy"
-SRC_URI="mirror://sourceforge.jp/scim-imengine/29660/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE="gtk nls"
-
-DEPEND=">=app-i18n/scim-1.2[-gtk3]
- || ( >=app-i18n/anthy-7500 >=app-i18n/anthy-ss-7500 )
- nls? ( virtual/libintl )
- gtk? ( >=x11-libs/gtk+-2.8:2 )"
-RDEPEND="${DEPEND}
- gtk? ( app-dicts/kasumi )"
-DEPEND="${DEPEND}
- nls? ( sys-devel/gettext )
- virtual/pkgconfig"
-
-src_prepare() {
- elibtoolize
-}
-
-src_configure() {
- econf \
- $(use_enable nls) \
- --disable-static \
- --disable-dependency-tracking || die
-}
-
-src_compile() {
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README
-}
-
-pkg_postinst() {
- elog
- elog "To use SCIM, you should use the following in your user startup scripts"
- elog "such as .gnomerc or .xinitrc:"
- elog
- elog "LANG='your_language' scim -d"
- elog "export XMODIFIERS=@im=SCIM"
- elog "export GTK_IM_MODULE=scim"
- elog "export QT_IM_MODULE=scim"
- elog
-}