Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-wnn/
Date: Sun, 27 Sep 2015 11:41:56
Message-Id: 1443354092.73fbce2ea6a5809f5677dc965348e7e21be8ac57.mrueg@gentoo
1 commit: 73fbce2ea6a5809f5677dc965348e7e21be8ac57
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 27 11:41:32 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 27 11:41:32 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73fbce2e
7
8 app-i18n/scim-wnn: Remove old
9
10 Package-Manager: portage-2.2.22
11
12 app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild | 50 ---------------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild b/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild
16 deleted file mode 100644
17 index 5c59861..0000000
18 --- a/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=2
26 -
27 -DESCRIPTION="Japanese input method Wnn IMEngine for SCIM"
28 -HOMEPAGE="http://nop.net-p.org/modules/pukiwiki/index.php?%5B%5Bscim-wnn%5D%5D"
29 -SRC_URI="http://nop.net-p.org/files/scim-wnn/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="freewnn"
35 -
36 -RDEPEND="|| ( >=app-i18n/scim-1.0[-gtk3] >=app-i18n/scim-cvs-1.0 )
37 - dev-libs/wnn7sdk
38 - freewnn? ( app-i18n/freewnn )"
39 -DEPEND="${RDEPEND}
40 - >=sys-apps/sed-4"
41 -
42 -src_prepare() {
43 - sed -i -e 's:$LDFLAGS conftest.$ac_ext $LIBS:conftest.$ac_ext $LIBS $LDFLAGS:g' \
44 - configure || die "ldflags sed failed"
45 - cd "${S}"/src
46 - sed -i -e "s:/usr/lib/wnn7:/usr/lib/wnn:g" \
47 - scim_wnn_def.h wnnconversion.cpp || die "sed failed"
48 -}
49 -
50 -src_install() {
51 - make DESTDIR="${D}" install || die "make install failed"
52 -
53 - dodoc AUTHORS THANKS README
54 -}
55 -
56 -pkg_postinst() {
57 - elog
58 - elog "To use SCIM with both GTK2 and XIM, you should use the following"
59 - elog "in your user startup scripts such as .gnomerc or .xinitrc:"
60 - elog
61 - elog "LANG='your_language' scim -d"
62 - elog "export XMODIFIERS=@im=SCIM"
63 - elog
64 - if ! use freewnn ; then
65 - ewarn
66 - ewarn "You disabled freewnn USE flag."
67 - ewarn "Please make sure you have wnnenvrc visible to scim-wnn."
68 - ewarn
69 - fi
70 -}