Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libchewing: ChangeLog libchewing-0.3.2.ebuild
Date: Wed, 25 Feb 2009 17:06:56
Message-Id: E1LcNDg-0005BA-F9@stork.gentoo.org
1 matsuu 09/02/25 17:06:52
2
3 Modified: ChangeLog
4 Added: libchewing-0.3.2.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 dev-libs/libchewing/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libchewing/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libchewing/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libchewing/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libchewing/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 11 Jan 2009 07:32:50 -0000 1.14
23 +++ ChangeLog 25 Feb 2009 17:06:52 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libchewing
26 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libchewing/ChangeLog,v 1.14 2009/01/11 07:32:50 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libchewing/ChangeLog,v 1.15 2009/02/25 17:06:52 matsuu Exp $
29 +
30 +*libchewing-0.3.2 (25 Feb 2009)
31 +
32 + 25 Feb 2009; MATSUU Takuto <matsuu@g.o> +libchewing-0.3.2.ebuild:
33 + Version bumped.
34
35 *libchewing-0.3.1 (11 Jan 2009)
36
37
38
39
40 1.1 dev-libs/libchewing/libchewing-0.3.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libchewing/libchewing-0.3.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libchewing/libchewing-0.3.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libchewing-0.3.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libchewing/libchewing-0.3.2.ebuild,v 1.1 2009/02/25 17:06:52 matsuu Exp $
50
51 inherit multilib
52
53 DESCRIPTION="Library for Chinese Phonetic input method"
54 HOMEPAGE="http://chewing.csie.net/"
55 SRC_URI="http://chewing.csie.net/download/libchewing/${P}.tar.bz2"
56
57 SLOT="0"
58 LICENSE="GPL-2"
59 KEYWORDS="~amd64 ~ppc ~x86"
60 IUSE="debug test"
61
62 RDEPEND="sys-libs/ncurses"
63 DEPEND="${RDEPEND}
64 dev-util/pkgconfig
65 test? ( >=dev-libs/check-0.9.4 )"
66
67 src_compile() {
68 econf $(use_enable debug) || die
69 emake || die
70 }
71
72 src_install() {
73 emake DESTDIR="${D}" install || die
74
75 dodoc AUTHORS ChangeLog NEWS README TODO
76 }
77
78 pkg_postinst() {
79 if [[ -e "${ROOT}"/usr/$(get_libdir)/libchewing.so.1 ]] ; then
80 elog "You must re-compile all packages that are linked against"
81 elog "<libchewing-0.2.7 by using revdep-rebuild from gentoolkit:"
82 elog "# revdep-rebuild --library libchewing.so.1"
83 fi
84
85 if [[ -e "${ROOT}"/usr/$(get_libdir)/libchewing.so.2 ]] ; then
86 elog "You must re-compile all packages that are linked against"
87 elog "<libchewing-0.3.0 by using revdep-rebuild from gentoolkit:"
88 elog "# revdep-rebuild --library libchewing.so.2"
89 fi
90 }