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.5_p100425.ebuild ChangeLog jd-2.6.5_beta100411.ebuild
Date: Fri, 30 Apr 2010 23:46:36
Message-Id: 20100430234633.0A0992C04C@corvid.gentoo.org
1 matsuu 10/04/30 23:46:32
2
3 Modified: ChangeLog
4 Added: jd-2.6.5_p100425.ebuild
5 Removed: jd-2.6.5_beta100411.ebuild
6 Log:
7 Version bumped.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.22 www-client/jd/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 14 Apr 2010 17:26:35 -0000 1.21
24 +++ ChangeLog 30 Apr 2010 23:46:32 -0000 1.22
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-client/jd
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.21 2010/04/14 17:26:35 matsuu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.22 2010/04/30 23:46:32 matsuu Exp $
30 +
31 +*jd-2.6.5_p100425 (30 Apr 2010)
32 +
33 + 30 Apr 2010; MATSUU Takuto <matsuu@g.o>
34 + -jd-2.6.5_beta100411.ebuild, +jd-2.6.5_p100425.ebuild:
35 + Version bumped.
36
37 *jd-2.6.5_beta100411 (14 Apr 2010)
38
39
40
41
42 1.1 www-client/jd/jd-2.6.5_p100425.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.6.5_p100425.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.6.5_p100425.ebuild?rev=1.1&content-type=text/plain
46
47 Index: jd-2.6.5_p100425.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-client/jd/jd-2.6.5_p100425.ebuild,v 1.1 2010/04/30 23:46:32 matsuu Exp $
52
53 EAPI="2"
54 inherit eutils autotools
55
56 MY_P="${P/_p/-}"
57 MY_P="${MY_P/_/-}"
58
59 DESCRIPTION="gtk2 based 2ch browser written in C++"
60 HOMEPAGE="http://jd4linux.sourceforge.jp/"
61 SRC_URI="mirror://sourceforge.jp/jd4linux/47156/${MY_P}.tgz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="alsa gnome gnutls migemo"
67
68 RDEPEND=">=dev-cpp/gtkmm-2.8
69 >=dev-libs/glib-2
70 x11-misc/xdg-utils
71 alsa? ( >=media-libs/alsa-lib-1 )
72 gnome? ( >=gnome-base/libgnomeui-2 )
73 !gnome? (
74 x11-libs/libSM
75 x11-libs/libICE
76 )
77 gnutls? ( >=net-libs/gnutls-1.2 )
78 !gnutls? ( >=dev-libs/openssl-0.9 )
79 migemo? ( app-text/cmigemo )"
80
81 DEPEND="${RDEPEND}
82 dev-util/pkgconfig"
83
84 S="${WORKDIR}/${MY_P}"
85
86 src_prepare() {
87 eautoreconf
88 }
89
90 src_configure() {
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 }
107
108 src_install() {
109 emake DESTDIR="${D}" install || die "emake install failed"
110 doicon ${PN}.png || die
111 domenu ${PN}.desktop || die
112 dodoc AUTHORS ChangeLog NEWS README || die
113 }