summaryrefslogtreecommitdiff
path: root/app-i18n/scim-pinyin
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-09-02 14:09:07 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-09-02 14:09:07 +0100
commitb17a3ef12038de50228bade1f05502c74e135321 (patch)
tree9026dffec53f92cba48ca9a500a4f778e6304380 /app-i18n/scim-pinyin
parent3cf7c3ef441822c889356fd1812ebf2944a59851 (diff)
gentoo resync : 02.09.2020
Diffstat (limited to 'app-i18n/scim-pinyin')
-rw-r--r--app-i18n/scim-pinyin/Manifest2
-rw-r--r--app-i18n/scim-pinyin/scim-pinyin-0.5.92.ebuild42
2 files changed, 26 insertions, 18 deletions
diff --git a/app-i18n/scim-pinyin/Manifest b/app-i18n/scim-pinyin/Manifest
index b8ea5cf459b9..14949ae96354 100644
--- a/app-i18n/scim-pinyin/Manifest
+++ b/app-i18n/scim-pinyin/Manifest
@@ -1,4 +1,4 @@
AUX scim-pinyin-0.5.91-fixconfigure.patch 1313 BLAKE2B 6ab4742b4c857064d07402411b81041e3a5f8cc998876df7421f1b7bab97905e572fe793fdecb91325a34c0f4e774d8d115dbc3ea23db63aa518e0d84240ebb7 SHA512 9d4dd0c259d8171c8a3b171e68eded4670aacd27902ee8373fe7aff36d088b3cec5570783b9588357ea475321b5267ff635b865a57e7fd3a9b1245e86710decb
DIST scim-pinyin-0.5.92.tar.gz 4769203 BLAKE2B 413a196d175536a044bdf4922bf1f3de6051f7e3cb61131153cab6c15e2301e373bfdd037d3e70c2893f66c29f955696e94bb9c75d1e686ca549d26716de0c47 SHA512 6af20b925c45ca355e12eeb59285e3327c2195038078a0e1741870395dc5a8f7dae60b8c9cd77919fbad94c27e123b9e58439f7011277439f9914d1a543a805f
-EBUILD scim-pinyin-0.5.92.ebuild 814 BLAKE2B 089fd7a947524716a5d14b9d6a94f119d6a81e7778a0c549fef3ae9e2c99d792303558beabca9ece8c4bd4a4ab3b06261b2b9f460047dc11ce2f455952862cb7 SHA512 e8f4fed61a8e47ee96cefbe45207cbbda78929b70487f747e9586a3a01fe38259b9262169dfde83ad352a47976302d5f88a587e2770778592c5c26b2cac073e2
+EBUILD scim-pinyin-0.5.92.ebuild 813 BLAKE2B a287b8b03b49d2f211ddedada0328630728fcd58ed0822cb4c9b80f52a892a58fca047cd2ab6ba721d612369716c128f1c41513cdd7fb30cdb382e4f803329d7 SHA512 206bf2597f7fb859dd7c5bd3d3383db493a2ed4797c04d4b7aa964401021d32b5e41e95ba0653954a421f39cc7d318e19b35e6726b671b76ce408d04350b51af
MISC metadata.xml 308 BLAKE2B 1bdcfa2996c5ba60e52eddb6446bbc6978ebee7f1f2f4658c44438b886a89cf46a3fddea53c479151e5e023e5681dca5f01264a26ca108c895ac6758f01d6430 SHA512 9f18bf632f3eff9a6498145c2b4c04d51bb119c67351216ab757cd3cea2364c60bef683769218c0596ef6bd29235e51df6a64f9ab1234665fc2191e18fc51cc7
diff --git a/app-i18n/scim-pinyin/scim-pinyin-0.5.92.ebuild b/app-i18n/scim-pinyin/scim-pinyin-0.5.92.ebuild
index b0faa6aeb726..48730fbcfdc4 100644
--- a/app-i18n/scim-pinyin/scim-pinyin-0.5.92.ebuild
+++ b/app-i18n/scim-pinyin/scim-pinyin-0.5.92.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
-inherit autotools-utils
+inherit autotools
DESCRIPTION="Smart Common Input Method (SCIM) Smart Pinyin Input Method"
HOMEPAGE="http://www.scim-im.org/"
@@ -14,25 +14,33 @@ SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="nls"
-RDEPEND="x11-libs/libXt
+RDEPEND="
>=app-i18n/scim-1.1
+ x11-libs/libXt
nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
virtual/pkgconfig
nls? ( sys-devel/gettext )"
-AUTOTOOLS_AUTORECONF=1
-PATCHES=(
- "${FILESDIR}/${PN}-0.5.91-fixconfigure.patch"
-)
-DOCS=( AUTHORS NEWS README ChangeLog )
+
+PATCHES=( "${FILESDIR}"/${PN}-0.5.91-fixconfigure.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
src_configure() {
- local myeconfargs=(
+ econf \
+ --disable-skim-support \
+ --disable-static \
+ --without-arts \
$(use_enable nls)
- --disable-skim-support
- --without-arts
- --disable-static
- --disable-depedency-tracking
- )
- autotools-utils_src_configure
+}
+
+src_install() {
+ default
+
+ # only plugins
+ find "${ED}" -name '*.la' -delete || die
}