Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/nabi: nabi-0.99.11.ebuild ChangeLog
Date: Thu, 02 May 2013 10:43:34
Message-Id: 20130502104327.4AF6E2171D@flycatcher.gentoo.org
1 naota 13/05/02 10:43:27
2
3 Modified: ChangeLog
4 Added: nabi-0.99.11.ebuild
5 Log:
6 Version bump wrt #448658
7
8 (Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key F8551514)
9
10 Revision Changes Path
11 1.33 app-i18n/nabi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 10 Mar 2013 06:29:11 -0000 1.32
24 +++ ChangeLog 2 May 2013 10:43:27 -0000 1.33
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/nabi
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.32 2013/03/10 06:29:11 naota Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.33 2013/05/02 10:43:27 naota Exp $
30 +
31 +*nabi-0.99.11 (02 May 2013)
32 +
33 + 02 May 2013; Naohiro Aota <naota@g.o> +nabi-0.99.11.ebuild:
34 + Version bump wrt #448658
35
36 10 Mar 2013; Naohiro Aota <naota@g.o> nabi-0.15.ebuild,
37 nabi-0.17.ebuild, nabi-0.99.10.ebuild, nabi-0.99.3.ebuild, nabi-0.99.8.ebuild:
38
39
40
41 1.1 app-i18n/nabi/nabi-0.99.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/nabi-0.99.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/nabi-0.99.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: nabi-0.99.11.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/nabi-0.99.11.ebuild,v 1.1 2013/05/02 10:43:27 naota Exp $
51
52 EAPI=5
53
54 DESCRIPTION="Simple Hanguk X Input Method"
55 HOMEPAGE="https://code.google.com/p/nabi/"
56 SRC_URI="http://nabi.googlecode.com/files/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 IUSE="debug nls"
61 KEYWORDS="~amd64 ~ppc ~x86"
62
63 RDEPEND=">=x11-libs/gtk+-2.4:2
64 >=app-i18n/libhangul-0.1.0
65 virtual/libintl"
66 DEPEND="${RDEPEND}
67 virtual/pkgconfig
68 sys-devel/gettext"
69
70 DOCS=( AUTHORS ChangeLog ChangeLog.0 NEWS README TODO )
71
72 src_configure() {
73 local myconf=
74
75 # Broken configure: --disable-debug also enables debug
76 use debug && \
77 myconf="${myconf} --enable-debug"
78
79 econf ${myconf}
80 }
81
82 src_install() {
83 default
84
85 insinto /etc/X11/xinit/xinput.d
86 sed -e "s:@EPREFIX@:${EPREFIX}:g" "${FILESDIR}/xinput-${PN}" | newins - "${PN}.conf"
87 }
88
89 pkg_postinst() {
90 elog "You MUST add environment variable..."
91 elog
92 elog "export XMODIFIERS=\"@im=nabi\""
93 elog
94 }