Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-hangul/
Date: Sun, 31 Dec 2017 11:14:33
Message-Id: 1514718848.82f6b0c2ac87185ff52858ca6fb1507813722167.soap@gentoo
1 commit: 82f6b0c2ac87185ff52858ca6fb1507813722167
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 31 10:05:55 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 31 11:14:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82f6b0c2
7
8 app-i18n/scim-hangul: Remove old
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-i18n/scim-hangul/Manifest | 1 -
13 app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild | 46 ---------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/app-i18n/scim-hangul/Manifest b/app-i18n/scim-hangul/Manifest
17 index 679334def3d..a022e0aef44 100644
18 --- a/app-i18n/scim-hangul/Manifest
19 +++ b/app-i18n/scim-hangul/Manifest
20 @@ -1,2 +1 @@
21 -DIST scim-hangul-0.3.2.tar.gz 1176577 BLAKE2B 80c0ad3f988615f29ee25a0143ec325a0bb892d4c18f19783519dfbbfef373515c1e09eebcccc53c12ffbafb6fff479c0ca98569025cc53862af77ab0169154d SHA512 e8905320ff8aeeddf0041987ac5a63a19fb75bea44ffc55b5d28b825e064d6881ee0187b55025d69dad35af85da86818afa3ac39f1f10991021a7fbed3e1462e
22 DIST scim-hangul-0.4.0.tar.gz 456953 BLAKE2B c7c2a320d03c4f15ad048b4e036a6dcd1f34044cb82e9a8fd18be8808e3f1be6f6f198e963982d1c6b742e614da5b3b2b3e2086ea8bbe19b4118f5493ae0188c SHA512 2f0285268deac35763c67487a40b718bf846d63634701a2a68d85109f686421f2c935b1f2998487b1f017c1a5e5bf453c56933ab4984f7464e1613d7e0b3131b
23
24 diff --git a/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild b/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild
25 deleted file mode 100644
26 index e2ca5068562..00000000000
27 --- a/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2012 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=2
34 -inherit base
35 -
36 -DESCRIPTION="Hangul IMEngine for SCIM ported from imhangul"
37 -HOMEPAGE="http://www.scim-im.org/"
38 -SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
39 -
40 -LICENSE="GPL-2"
41 -SLOT="0"
42 -KEYWORDS="amd64 ppc x86"
43 -IUSE="nls"
44 -
45 -RDEPEND="|| ( >=app-i18n/scim-0.99.8 >=app-i18n/scim-cvs-0.99.8 )
46 - >=app-i18n/libhangul-0.0.4
47 - nls? ( virtual/libintl )"
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig
50 - nls? ( sys-devel/gettext )"
51 -
52 -PATCHES=(
53 - "${FILESDIR}/${P}+gcc-4.3.patch"
54 - "${FILESDIR}/${P}+gcc-4.7.patch" )
55 -
56 -src_configure() {
57 - econf \
58 - --disable-skim-support \
59 - $(use_enable nls)
60 -}
61 -
62 -src_install() {
63 - emake DESTDIR="${D}" install || die "make install failed"
64 - dodoc AUTHORS ChangeLog* NEWS README*
65 -}
66 -
67 -pkg_postinst() {
68 - elog
69 - elog "To use SCIM with both GTK2 and XIM, you should use the following"
70 - elog "in your user startup scripts such as .gnomerc or .xinitrc:"
71 - elog
72 - elog "LANG='your_language' scim -d"
73 - elog "export XMODIFIERS=@im=SCIM"
74 - elog
75 -}