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