Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/nabi: nabi-0.99.8.ebuild ChangeLog nabi-0.14.ebuild nabi-0.13.ebuild
Date: Sun, 30 Jan 2011 00:12:47
Message-Id: 20110130001237.A6AC020054@flycatcher.gentoo.org
1 matsuu 11/01/30 00:12:37
2
3 Modified: ChangeLog
4 Added: nabi-0.99.8.ebuild
5 Removed: nabi-0.14.ebuild nabi-0.13.ebuild
6 Log:
7 Version bumped, bug #352702. Added imsettings related file.
8
9 (Portage version: 2.1.9.31/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.27 app-i18n/nabi/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.27&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.27&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?r1=1.26&r2=1.27
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v
21 retrieving revision 1.26
22 retrieving revision 1.27
23 diff -u -r1.26 -r1.27
24 --- ChangeLog 2 Jun 2009 10:24:00 -0000 1.26
25 +++ ChangeLog 30 Jan 2011 00:12:37 -0000 1.27
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-i18n/nabi
28 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.26 2009/06/02 10:24:00 flameeyes Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.27 2011/01/30 00:12:37 matsuu Exp $
32 +
33 +*nabi-0.99.8 (30 Jan 2011)
34 +
35 + 30 Jan 2011; MATSUU Takuto <matsuu@g.o> -nabi-0.13.ebuild,
36 + -nabi-0.14.ebuild, +nabi-0.99.8.ebuild, +files/xinput-nabi:
37 + Version bumped, bug #352702. Added imsettings related file. Removed old
38 + versions.
39
40 *nabi-0.99.3 (02 Jun 2009)
41
42
43
44
45 1.1 app-i18n/nabi/nabi-0.99.8.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/nabi-0.99.8.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/nabi-0.99.8.ebuild?rev=1.1&content-type=text/plain
49
50 Index: nabi-0.99.8.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/nabi-0.99.8.ebuild,v 1.1 2011/01/30 00:12:37 matsuu Exp $
55
56 EAPI=3
57
58 DESCRIPTION="Simple Hanguk X Input Method"
59 HOMEPAGE="http://nabi.kldp.net/"
60 SRC_URI="http://kldp.net/frs/download.php/5865/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 IUSE="debug nls"
65 KEYWORDS="~amd64 ~ppc ~x86"
66
67 RDEPEND=">=x11-libs/gtk+-2.4:2
68 >=app-i18n/libhangul-0.0.12
69 virtual/libintl"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig
72 sys-devel/gettext"
73
74 src_configure() {
75 local myconf=
76
77 # Broken configure: --disable-debug also enables debug
78 use debug && \
79 myconf="${myconf} --enable-debug"
80
81 econf ${myconf}
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "emake install failed"
86
87 sed -e "s:@EPREFIX@:${EPREFIX}:g" "${FILESDIR}/xinput-${PN}" > "${T}/${PN}.conf" || die
88 insinto /etc/X11/xinit/xinput.d
89 doins "${T}/${PN}.conf" || die
90
91 dodoc AUTHORS ChangeLog* NEWS README TODO || die
92 }
93
94 pkg_postinst() {
95 elog "You MUST add environment variable..."
96 elog
97 elog "export XMODIFIERS=\"@im=nabi\""
98 elog
99 }