Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/jd: jd-2.6.0_p100208.ebuild ChangeLog
Date: Tue, 09 Feb 2010 00:07:25
Message-Id: E1NeddN-0008IG-0L@stork.gentoo.org
1 matsuu 10/02/09 00:07:17
2
3 Modified: ChangeLog
4 Added: jd-2.6.0_p100208.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.7.17/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 www-client/jd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 31 Dec 2009 06:02:30 -0000 1.19
23 +++ ChangeLog 9 Feb 2010 00:07:16 -0000 1.20
24 @@ -1,6 +1,11 @@
25 # ChangeLog for www-client/jd
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.19 2009/12/31 06:02:30 matsuu Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.20 2010/02/09 00:07:16 matsuu Exp $
30 +
31 +*jd-2.6.0_p100208 (09 Feb 2010)
32 +
33 + 09 Feb 2010; MATSUU Takuto <matsuu@g.o> +jd-2.6.0_p100208.ebuild:
34 + Version bumped.
35
36 *jd-2.5.5_p091228 (31 Dec 2009)
37
38
39
40
41 1.1 www-client/jd/jd-2.6.0_p100208.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.6.0_p100208.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.6.0_p100208.ebuild?rev=1.1&content-type=text/plain
45
46 Index: jd-2.6.0_p100208.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-client/jd/jd-2.6.0_p100208.ebuild,v 1.1 2010/02/09 00:07:16 matsuu Exp $
51
52 inherit eutils autotools
53
54 MY_P="${P/_p/-}"
55 MY_P="${MY_P/_/-}"
56
57 DESCRIPTION="gtk2 based 2ch browser written in C++"
58 HOMEPAGE="http://jd4linux.sourceforge.jp/"
59 SRC_URI="mirror://sourceforge.jp/jd4linux/45878/${MY_P}.tgz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="alsa gnome gnutls migemo"
65
66 RDEPEND=">=dev-cpp/gtkmm-2.8
67 >=dev-libs/glib-2
68 x11-misc/xdg-utils
69 alsa? ( >=media-libs/alsa-lib-1 )
70 gnome? ( >=gnome-base/libgnomeui-2 )
71 !gnome? (
72 x11-libs/libSM
73 x11-libs/libICE
74 )
75 gnutls? ( >=net-libs/gnutls-1.2 )
76 !gnutls? ( >=dev-libs/openssl-0.9 )
77 migemo? ( app-text/cmigemo )"
78
79 DEPEND="${RDEPEND}
80 dev-util/pkgconfig"
81
82 S="${WORKDIR}/${MY_P}"
83
84 src_unpack() {
85 unpack ${A}
86 cd "${S}"
87 eautoreconf
88 }
89
90 src_compile() {
91 local myconf="--with-xdgopen"
92
93 # use gnomeui sm instead of Xorg SM/ICE
94 if use gnome ; then
95 myconf="${myconf} --with-sessionlib=gnomeui"
96 else
97 myconf="${myconf} --with-sessionlib=xsmp"
98 fi
99
100 econf \
101 $(use_with alsa) \
102 $(use_with !gnutls openssl) \
103 $(use_with migemo) \
104 $(use_with migemo migemodict /usr/share/migemo/migemo-dict) \
105 ${myconf} || die "econf failed"
106 emake || die "emake failed"
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "emake install failed"
111 doicon ${PN}.png
112 domenu ${PN}.desktop
113 dodoc AUTHORS ChangeLog NEWS README
114 }