Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-pinyin/
Date: Sat, 02 Jun 2018 22:38:22
Message-Id: 1527979019.64af061471ce7f668f74c99e7369dcbde30df65e.bman@gentoo
1 commit: 64af061471ce7f668f74c99e7369dcbde30df65e
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 2 19:50:56 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 2 22:36:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64af0614
7
8 app-i18n/scim-pinyin: drop EAPI=0 ebuild
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-i18n/scim-pinyin/Manifest | 1 -
13 app-i18n/scim-pinyin/scim-pinyin-0.5.91-r3.ebuild | 49 -----------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/app-i18n/scim-pinyin/Manifest b/app-i18n/scim-pinyin/Manifest
17 index 48ca5aa2bdc..21392e9dfae 100644
18 --- a/app-i18n/scim-pinyin/Manifest
19 +++ b/app-i18n/scim-pinyin/Manifest
20 @@ -1,2 +1 @@
21 -DIST scim-pinyin-0.5.91.tar.gz 5492055 BLAKE2B 8eb01602f4421c397d6c408c1513c0691a98f10d3f47ed54eed9a39303d9a0eb804d4de2f744e25808c83b8aa9be232482caaaa829b8becc8ee10e4cf67373f2 SHA512 ec4498c68cc7ef913b890eb881c73ffd790a5d8d8d48a0a2c32ceda942a7f359fc4bd181199b5333156119484d53d17396b48026fc7913105cfa10c92dd4548b
22 DIST scim-pinyin-0.5.92.tar.gz 4769203 BLAKE2B 413a196d175536a044bdf4922bf1f3de6051f7e3cb61131153cab6c15e2301e373bfdd037d3e70c2893f66c29f955696e94bb9c75d1e686ca549d26716de0c47 SHA512 6af20b925c45ca355e12eeb59285e3327c2195038078a0e1741870395dc5a8f7dae60b8c9cd77919fbad94c27e123b9e58439f7011277439f9914d1a543a805f
23
24 diff --git a/app-i18n/scim-pinyin/scim-pinyin-0.5.91-r3.ebuild b/app-i18n/scim-pinyin/scim-pinyin-0.5.91-r3.ebuild
25 deleted file mode 100644
26 index 3b1c1c0eb32..00000000000
27 --- a/app-i18n/scim-pinyin/scim-pinyin-0.5.91-r3.ebuild
28 +++ /dev/null
29 @@ -1,49 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=0
34 -
35 -inherit autotools eutils
36 -
37 -DESCRIPTION="Smart Common Input Method (SCIM) Smart Pinyin Input Method"
38 -HOMEPAGE="http://www.scim-im.org/"
39 -SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 ppc ppc64 x86"
44 -IUSE="nls"
45 -
46 -RDEPEND="x11-libs/libXt
47 - || ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 )
48 - nls? ( virtual/libintl )"
49 -DEPEND="${RDEPEND}
50 - virtual/pkgconfig
51 - nls? ( sys-devel/gettext )"
52 -
53 -src_unpack() {
54 - unpack ${A}
55 - cd "${S}"
56 - epatch "${FILESDIR}/${P}-fixconfigure.patch"
57 - epatch "${FILESDIR}/${PN}-qt335.patch"
58 - epatch "${FILESDIR}/${P}-gcc43.patch"
59 - epatch "${FILESDIR}/${P}-gbk.patch"
60 -
61 - AT_M4DIR=m4 AT_NO_RECURSIVE=yes eautoreconf
62 -}
63 -
64 -src_compile() {
65 - econf \
66 - $(use_enable nls) \
67 - --disable-skim-support \
68 - --without-arts \
69 - --disable-static \
70 - --disable-depedency-tracking \
71 - || die "econf failed"
72 - emake || die "emake failed"
73 -}
74 -
75 -src_install() {
76 - emake DESTDIR="${D}" install || die "make install failed"
77 - dodoc AUTHORS NEWS README ChangeLog
78 -}