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-dicts/gwaei: ChangeLog gwaei-0.15.1.ebuild gwaei-0.14.0.ebuild gwaei-0.13.2.ebuild
Date: Mon, 02 Mar 2009 14:55:13
Message-Id: E1Le9Xz-0004P8-HJ@stork.gentoo.org
1 matsuu 09/03/02 14:55:11
2
3 Modified: ChangeLog
4 Added: gwaei-0.15.1.ebuild
5 Removed: gwaei-0.14.0.ebuild gwaei-0.13.2.ebuild
6 Log:
7 Version bumped. Added gnome USE flag. Removed old versions.
8 (Portage version: 2.1.6.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 app-dicts/gwaei/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/gwaei/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/gwaei/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/gwaei/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-dicts/gwaei/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 13 Feb 2009 15:45:48 -0000 1.9
24 +++ ChangeLog 2 Mar 2009 14:55:11 -0000 1.10
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-dicts/gwaei
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/gwaei/ChangeLog,v 1.9 2009/02/13 15:45:48 matsuu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/gwaei/ChangeLog,v 1.10 2009/03/02 14:55:11 matsuu Exp $
30 +
31 +*gwaei-0.15.1 (02 Mar 2009)
32 +
33 + 02 Mar 2009; MATSUU Takuto <matsuu@g.o>
34 + +files/gwaei-0.15.1-parallel-install.patch, -gwaei-0.13.2.ebuild,
35 + -gwaei-0.14.0.ebuild, +gwaei-0.15.1.ebuild:
36 + Version bumped. Added gnome USE flag. Removed old versions.
37
38 *gwaei-0.14.0-r1 (13 Feb 2009)
39
40
41
42
43 1.1 app-dicts/gwaei/gwaei-0.15.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/gwaei/gwaei-0.15.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/gwaei/gwaei-0.15.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gwaei-0.15.1.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-dicts/gwaei/gwaei-0.15.1.ebuild,v 1.1 2009/03/02 14:55:11 matsuu Exp $
53
54 inherit autotools eutils gnome2-utils
55
56 DESCRIPTION="Japanese-English Dictionary for GNOME"
57 HOMEPAGE="http://gwaei.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/gwaei/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="gnome libsexy nls"
64
65 RDEPEND=">=x11-libs/gtk+-2.12
66 >=net-misc/curl-7.18
67 >=dev-libs/glib-2.16.5
68 gnome? (
69 >=gnome-base/libgnome-2.22
70 >=gnome-base/gconf-2.22
71 )
72 libsexy? ( >=x11-libs/libsexy-0.1.11 )
73 nls? ( virtual/libintl )"
74 DEPEND="${RDEPEND}
75 nls? ( >=sys-devel/gettext-0.17 )
76 dev-util/pkgconfig"
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81 epatch "${FILESDIR}/${P}-parallel-install.patch"
82 eautomake
83 }
84
85 src_compile() {
86 econf \
87 $(use_enable gnome gconf) \
88 $(use_enable gnome) \
89 $(use_enable libsexy) \
90 $(use_enable nls) \
91 --disable-schemas-install || die
92 emake || die
93 }
94
95 src_install() {
96 emake DESTDIR="${D}" install || die
97
98 rm -rf "${D}/usr/share/doc/${P}"
99 dodoc AUTHORS ChangeLog NEWS README
100 }
101 pkg_preinst() {
102 if use gnome ; then
103 gnome2_gconf_savelist
104 gnome2_icon_savelist
105 fi
106 }
107
108 pkg_postinst() {
109 use gnome && gnome2_gconf_install
110 }