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.4.0_beta090510.ebuild ChangeLog jd-2.2.0_p090212.ebuild jd-2.1.0_p081228.ebuild
Date: Mon, 11 May 2009 15:19:05
Message-Id: E1M3XHS-000137-I5@stork.gentoo.org
1 matsuu 09/05/11 15:19:02
2
3 Modified: ChangeLog
4 Added: jd-2.4.0_beta090510.ebuild
5 Removed: jd-2.2.0_p090212.ebuild jd-2.1.0_p081228.ebuild
6 Log:
7 Version bumped. Removed old versions.
8 (Portage version: 2.1.6.13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 www-client/jd/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 4 Mar 2009 16:29:44 -0000 1.11
24 +++ ChangeLog 11 May 2009 15:19:02 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-client/jd
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.11 2009/03/04 16:29:44 matsuu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.12 2009/05/11 15:19:02 matsuu Exp $
30 +
31 +*jd-2.4.0_beta090510 (11 May 2009)
32 +
33 + 11 May 2009; MATSUU Takuto <matsuu@g.o> -jd-2.1.0_p081228.ebuild,
34 + -jd-2.2.0_p090212.ebuild, +jd-2.4.0_beta090510.ebuild:
35 + Version bumped. Removed old versions.
36
37 *jd-2.3.0_p090305 (04 Mar 2009)
38
39
40
41
42 1.1 www-client/jd/jd-2.4.0_beta090510.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.4.0_beta090510.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.4.0_beta090510.ebuild?rev=1.1&content-type=text/plain
46
47 Index: jd-2.4.0_beta090510.ebuild
48 ===================================================================
49 # Copyright 1999-2009 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.4.0_beta090510.ebuild,v 1.1 2009/05/11 15:19:02 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/39908/${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 }