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/libhangul: ChangeLog libhangul-0.0.12.ebuild libhangul-0.0.8.ebuild libhangul-0.0.9.ebuild
Date: Thu, 27 Jan 2011 23:24:25
Message-Id: 20110127232415.808FB20054@flycatcher.gentoo.org
1 matsuu 11/01/27 23:24:15
2
3 Modified: ChangeLog
4 Added: libhangul-0.0.12.ebuild
5 Removed: libhangul-0.0.8.ebuild libhangul-0.0.9.ebuild
6 Log:
7 Version bumped, bug #352698. Added nls, static-libs and test USE flags.
8
9 (Portage version: 2.1.9.31/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.22 app-i18n/libhangul/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/libhangul/ChangeLog?rev=1.22&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/libhangul/ChangeLog?rev=1.22&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/libhangul/ChangeLog?r1=1.21&r2=1.22
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-i18n/libhangul/ChangeLog,v
21 retrieving revision 1.21
22 retrieving revision 1.22
23 diff -u -r1.21 -r1.22
24 --- ChangeLog 23 May 2010 20:04:54 -0000 1.21
25 +++ ChangeLog 27 Jan 2011 23:24:15 -0000 1.22
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-i18n/libhangul
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/libhangul/ChangeLog,v 1.21 2010/05/23 20:04:54 pacho Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/libhangul/ChangeLog,v 1.22 2011/01/27 23:24:15 matsuu Exp $
32 +
33 +*libhangul-0.0.12 (27 Jan 2011)
34 +
35 + 27 Jan 2011; MATSUU Takuto <matsuu@g.o> -libhangul-0.0.8.ebuild,
36 + -libhangul-0.0.9.ebuild, +libhangul-0.0.12.ebuild:
37 + Version bumped, bug #352698. Added nls, static-libs and test USE flags.
38 + Removed old versions.
39
40 23 May 2010; Pacho Ramos <pacho@g.o> libhangul-0.0.10.ebuild:
41 stable amd64, bug 312911
42
43
44
45 1.1 app-i18n/libhangul/libhangul-0.0.12.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/libhangul/libhangul-0.0.12.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/libhangul/libhangul-0.0.12.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libhangul-0.0.12.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/libhangul/libhangul-0.0.12.ebuild,v 1.1 2011/01/27 23:24:15 matsuu Exp $
55
56 EAPI="3"
57
58 DESCRIPTION="libhangul is a generalized and portable library for processing hangul."
59 HOMEPAGE="http://kldp.net/projects/hangul/"
60 SRC_URI="http://kldp.net/frs/download.php/5855/${P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
65 IUSE="nls static-libs test"
66
67 RDEPEND="nls? ( virtual/libintl )"
68 DEPEND="nls? ( sys-devel/gettext )
69 dev-util/pkgconfig
70 test? ( dev-libs/check )"
71
72 src_configure() {
73 econf \
74 $(use_enable nls) \
75 $(use_enable static-libs static) || die
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "emake install failed"
80
81 dodoc AUTHORS ChangeLog NEWS README || die
82 }