Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/nabi: nabi-0.99.3.ebuild ChangeLog
Date: Tue, 02 Jun 2009 10:24:01
Message-Id: E1MBRA0-0002cZ-9f@stork.gentoo.org
1 flameeyes 09/06/02 10:24:00
2
3 Modified: ChangeLog
4 Added: nabi-0.99.3.ebuild
5 Log:
6 Version bump and add a patch to fix build with --as-needed (closes bug #246898).
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.26 app-i18n/nabi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.26&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/nabi/ChangeLog?rev=1.26&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/nabi/ChangeLog?r1=1.25&r2=1.26
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v
19 retrieving revision 1.25
20 retrieving revision 1.26
21 diff -u -r1.25 -r1.26
22 --- ChangeLog 22 Jun 2008 00:06:39 -0000 1.25
23 +++ ChangeLog 2 Jun 2009 10:24:00 -0000 1.26
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-i18n/nabi
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.25 2008/06/22 00:06:39 wormo Exp $
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 +
31 +*nabi-0.99.3 (02 Jun 2009)
32 +
33 + 02 Jun 2009; Diego E. Pettenò <flameeyes@g.o> +nabi-0.99.3.ebuild,
34 + +files/nabi-0.99.3-asneeded.patch:
35 + Version bump and add a patch to fix build with --as-needed (closes bug
36 + #246898).
37
38 21 Jun 2008; Stephanie Lockwood-Childs <wormo@g.o>
39 nabi-0.17.ebuild:
40
41
42
43 1.1 app-i18n/nabi/nabi-0.99.3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/nabi/nabi-0.99.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/nabi/nabi-0.99.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: nabi-0.99.3.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/nabi-0.99.3.ebuild,v 1.1 2009/06/02 10:24:00 flameeyes Exp $
53
54 inherit eutils autotools
55
56 DESCRIPTION="Simple Hanguk X Input Method"
57 HOMEPAGE="http://nabi.kldp.net/"
58 SRC_URI="http://kldp.net/frs/download.php/4929/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 IUSE="debug"
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 RDEPEND=">=x11-libs/gtk+-2.4
66 >=app-i18n/libhangul-0.0.8"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 src_unpack() {
71 unpack ${A}
72
73 cd "${S}"
74 epatch "${FILESDIR}"/${P}-asneeded.patch
75
76 eautoreconf
77 }
78
79 src_compile() {
80 local myconf=
81
82 # Broken configure: --disable-debug also enables debug
83 use debug && \
84 myconf="${myconf} --enable-debug"
85
86 econf ${myconf}
87 emake || die
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "emake install failed"
92
93 dodoc AUTHORS ChangeLog NEWS README TODO
94 }
95
96 pkg_postinst() {
97 elog "You MUST add environment variable..."
98 elog
99 elog "export XMODIFIERS=\"@im=nabi\""
100 elog
101 }