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