blob: 787102e76c7e903eec05abf741073940b8056395 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.0.24.ebuild,v 1.11 2007/08/02 06:34:09 mr_bones_ Exp $
inherit gnome2 eutils autotools
DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo/etc feeds"
HOMEPAGE="http://liferea.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE="dbus firefox gtkhtml seamonkey"
RDEPEND=">=x11-libs/gtk+-2.4.0
x11-libs/pango
>=gnome-base/gconf-2
>=dev-libs/libxml2-2.5.10
firefox? ( www-client/mozilla-firefox )
!firefox? ( seamonkey? ( www-client/seamonkey ) )
gtkhtml? ( =gnome-extra/gtkhtml-2* )
!seamonkey? ( !firefox? ( =gnome-extra/gtkhtml-2* ) )
gnome-base/libgnome
dbus? ( >=dev-libs/dbus-glib-0.71 )"
# libgnome dep is for gnome-open; it's not in configure.ac
DEPEND="${RDEPEND}
dev-util/pkgconfig
=sys-devel/automake-1.7*"
DOCS="AUTHORS ChangeLog NEWS README"
pkg_setup() {
# if you don't choose a gecko to use, we will automatically
# use gtkhtml2 as the backend.
if ! use seamonkey && ! use firefox || use gtkhtml ; then
G2CONF="${G2CONF} --enable-gtkhtml2"
else
G2CONF="${G2CONF} --disable-gtkhtml2"
fi
# we prefer firefox over seamonkey
if use firefox ; then
G2CONF="${G2CONF} --enable-gecko=firefox"
elif use seamonkey ; then
G2CONF="${G2CONF} --enable-gecko=seamonkey"
else
G2CONF="${G2CONF} --disable-gecko"
fi
G2CONF="${G2CONF} $(use_enable dbus)"
}
src_unpack() {
gnome2_src_unpack
# Fix add-feed check; bug #147521
epatch "${FILESDIR}/${PN}-1.0.22-add-feed.patch"
}
src_install() {
gnome2_src_install
rm -f ${D}/usr/bin/${PN}
mv ${D}/usr/bin/${PN}-bin ${D}/usr/bin/${PN}
}
|