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.4.1_beta090628.ebuild
Date: Wed, 01 Jul 2009 14:32:25
Message-Id: E1MM0rH-0002zF-6H@stork.gentoo.org
1 matsuu 09/07/01 14:32:23
2
3 Modified: ChangeLog
4 Added: jd-2.4.1_beta090628.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 www-client/jd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 27 May 2009 16:37:40 -0000 1.13
23 +++ ChangeLog 1 Jul 2009 14:32:23 -0000 1.14
24 @@ -1,6 +1,12 @@
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.13 2009/05/27 16:37:40 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-client/jd/ChangeLog,v 1.14 2009/07/01 14:32:23 matsuu Exp $
29 +
30 +*jd-2.4.1_beta090628 (01 Jul 2009)
31 +
32 + 01 Jul 2009; MATSUU Takuto <matsuu@g.o>
33 + +jd-2.4.1_beta090628.ebuild:
34 + Version bumped.
35
36 *jd-2.4.0_p090522 (27 May 2009)
37
38
39
40
41 1.1 www-client/jd/jd-2.4.1_beta090628.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.4.1_beta090628.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/jd/jd-2.4.1_beta090628.ebuild?rev=1.1&content-type=text/plain
45
46 Index: jd-2.4.1_beta090628.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-client/jd/jd-2.4.1_beta090628.ebuild,v 1.1 2009/07/01 14:32:23 matsuu Exp $
51
52 inherit eutils autotools
53
54 MY_P="${P/_p/-}"
55 MY_P="${MY_P/_/-}"
56
57 DESCRIPTION="gtk2 based 2ch browser written in C++"
58 HOMEPAGE="http://jd4linux.sourceforge.jp/"
59 SRC_URI="mirror://sourceforge.jp/jd4linux/40837/${MY_P}.tgz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
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 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 emake || die "emake failed"
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "emake install failed"
111 doicon ${PN}.png
112 domenu ${PN}.desktop
113 dodoc AUTHORS ChangeLog NEWS README
114 }