blob: 224676a40d85494adc53ed17a4c05c425dd34726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/jd/jd-2.0.0_beta080601.ebuild,v 1.1 2008/06/07 09:03:57 matsuu Exp $
inherit eutils autotools
MY_P="${P/_p/-}"
MY_P="${MY_P/_/-}"
DESCRIPTION="gtk2 based 2ch browser written in C++"
HOMEPAGE="http://jd4linux.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/jd4linux/31373/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome gnutls"
#IUSE="gnome gnutls migemo"
RDEPEND=">=dev-cpp/gtkmm-2.8
>=dev-libs/glib-2
gnome? ( >=gnome-base/libgnomeui-2 )
!gnome? (
x11-libs/libSM
x11-libs/libICE
)
gnutls? ( >=net-libs/gnutls-1.2 )
!gnutls? ( >=dev-libs/openssl-0.9 )"
# migemo? ( app-text/cmigemo )
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
eautoreconf
}
src_compile() {
local myconf=""
# use gnomeui sm instead of Xorg SM/ICE
if use gnome ; then
myconf="${myconf} --with-sessionlib=gnomeui"
else
myconf="${myconf} --with-sessionlib=xsmp"
fi
if use gnutls ; then
myconf="${myconf} --without-openssl"
else
myconf="${myconf} --with-openssl"
fi
#if use migemo ; then
# myconf="${myconf} --with-migemo --with-migemodict=/usr/share/migemo/migemo-dict"
#else
# myconf="${myconf} --without-migemo"
#fi
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
doicon ${PN}.png
domenu ${PN}.desktop
dodoc AUTHORS ChangeLog NEWS README
}
|