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.10.ebuild ChangeLog
Date: Thu, 01 Dec 2011 23:04:55
Message-Id: 20111201230446.35CFB2004B@flycatcher.gentoo.org
1 naota 11/12/01 23:04:46
2
3 Modified: ChangeLog
4 Added: nabi-0.99.10.ebuild
5 Log:
6 Version bump. Updated by MyeongCheol Kim. Bug #391873
7
8 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 app-i18n/nabi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 30 Sep 2011 00:49:36 -0000 1.29
24 +++ ChangeLog 1 Dec 2011 23:04:46 -0000 1.30
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/nabi
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.29 2011/09/30 00:49:36 naota Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.30 2011/12/01 23:04:46 naota Exp $
30 +
31 +*nabi-0.99.10 (01 Dec 2011)
32 +
33 + 01 Dec 2011; Naohiro Aota <naota@g.o> +nabi-0.99.10.ebuild:
34 + Version bump. Updated by MyeongCheol Kim
35
36 30 Sep 2011; Naohiro Aota <naota@g.o> nabi-0.15.ebuild,
37 +files/nabi-0.15-asneeded.patch, nabi-0.17.ebuild:
38
39
40
41 1.1 app-i18n/nabi/nabi-0.99.10.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/nabi-0.99.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/nabi/nabi-0.99.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: nabi-0.99.10.ebuild
47 ===================================================================
48 # Copyright 1999-2011 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.10.ebuild,v 1.1 2011/12/01 23:04:46 naota Exp $
51
52 EAPI=3
53
54 DESCRIPTION="Simple Hanguk X Input Method"
55 HOMEPAGE="http://nabi.kldp.net/"
56 SRC_URI="http://kldp.net/frs/download.php/6003/${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 dev-util/pkgconfig
68 sys-devel/gettext"
69
70 src_configure() {
71 local myconf=
72
73 # Broken configure: --disable-debug also enables debug
74 use debug && \
75 myconf="${myconf} --enable-debug"
76
77 econf ${myconf}
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "emake install failed"
82
83 sed -e "s:@EPREFIX@:${EPREFIX}:g" "${FILESDIR}/xinput-${PN}" > "${T}/${PN}.conf" || die
84 insinto /etc/X11/xinit/xinput.d
85 doins "${T}/${PN}.conf" || die
86
87 dodoc AUTHORS ChangeLog* NEWS README TODO || die
88 }
89
90 pkg_postinst() {
91 elog "You MUST add environment variable..."
92 elog
93 elog "export XMODIFIERS=\"@im=nabi\""
94 elog
95 }