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.0.3_p081124.ebuild
Date: Fri, 28 Nov 2008 16:53:42
Message-Id: E1L66b4-0000dR-K3@stork.gentoo.org
1 matsuu 08/11/28 16:53:38
2
3 Modified: ChangeLog
4 Added: jd-2.0.3_p081124.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.2_rc15/cvs/Linux 2.6.27-gentoo-r2 x86_64)
8
9 Revision Changes Path
10 1.4 www-client/jd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 20 Sep 2008 02:37:04 -0000 1.3
23 +++ ChangeLog 28 Nov 2008 16:53:38 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for www-client/jd
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.3 2008/09/20 02:37:04 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.4 2008/11/28 16:53:38 matsuu Exp $
29 +
30 +*jd-2.0.3_p081124 (28 Nov 2008)
31 +
32 + 28 Nov 2008; MATSUU Takuto <matsuu@g.o> +jd-2.0.3_p081124.ebuild:
33 + Version bumped.
34
35 *jd-2.0.2_p080919 (20 Sep 2008)
36
37
38
39
40 1.1 www-client/jd/jd-2.0.3_p081124.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.0.3_p081124.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.0.3_p081124.ebuild?rev=1.1&content-type=text/plain
44
45 Index: jd-2.0.3_p081124.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.0.3_p081124.ebuild,v 1.1 2008/11/28 16:53:38 matsuu Exp $
50
51 inherit eutils autotools
52
53 MY_P="${P/_p/-}"
54 MY_P="${MY_P/_beta/-}"
55
56 DESCRIPTION="gtk2 based 2ch browser written in C++"
57 HOMEPAGE="http://jd4linux.sourceforge.jp/"
58 SRC_URI="mirror://sourceforge.jp/jd4linux/33877/${MY_P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="alsa gnome gnutls"
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 if use gnutls ; then
101 myconf="${myconf} --without-openssl"
102 else
103 myconf="${myconf} --with-openssl"
104 fi
105
106 #if use migemo ; then
107 # myconf="${myconf} --with-migemo --with-migemodict=/usr/share/migemo/migemo-dict"
108 #else
109 # myconf="${myconf} --without-migemo"
110 #fi
111
112 econf \
113 $(use_with alsa) \
114 ${myconf} || die "econf failed"
115 emake || die "emake failed"
116 }
117
118 src_install() {
119 emake DESTDIR="${D}" install || die "emake install failed"
120 doicon ${PN}.png
121 domenu ${PN}.desktop
122 dodoc AUTHORS ChangeLog NEWS README
123 }