Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 213372 | Differences between
and this patch

Collapse All | Expand All

(-)galeon-2.0.4.ebuild (-21 / +15 lines)
Lines 2-22 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/www-client/galeon/galeon-2.0.4.ebuild,v 1.8 2008/03/14 17:27:42 armin76 Exp $
3
# $Header: /var/cvsroot/gentoo-x86/www-client/galeon/galeon-2.0.4.ebuild,v 1.8 2008/03/14 17:27:42 armin76 Exp $
4
4
5
inherit gnome2 eutils
5
EAPI="1"
6
7
inherit gnome2
6
8
7
DESCRIPTION="A GNOME Web browser based on gecko (mozilla's rendering engine)"
9
DESCRIPTION="A GNOME Web browser based on gecko (mozilla's rendering engine)"
8
HOMEPAGE="http://galeon.sourceforge.net"
10
HOMEPAGE="http://galeon.sourceforge.net"
9
SRC_URI="mirror://sourceforge/galeon/${P}.tar.bz2"
11
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
10
12
11
LICENSE="GPL-2"
13
LICENSE="GPL-2"
12
IUSE="seamonkey xulrunner"
14
IUSE="seamonkey xulrunner"
13
KEYWORDS="amd64 ia64 ppc sparc x86"
14
SLOT="0"
15
SLOT="0"
15
RDEPEND="xulrunner? ( =net-libs/xulrunner-1.8* )
16
17
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
18
19
RDEPEND="xulrunner? ( net-libs/xulrunner:1.8 )
16
	!xulrunner? (
20
	!xulrunner? (
17
		seamonkey? ( =www-client/seamonkey-1* )
21
		seamonkey? ( =www-client/seamonkey-1* )
18
		!seamonkey? ( =www-client/mozilla-firefox-2* )
22
		!seamonkey? ( =www-client/mozilla-firefox-2* ) )
19
		)
20
	>=dev-libs/glib-2
23
	>=dev-libs/glib-2
21
	>=x11-libs/gtk+-2.4.0
24
	>=x11-libs/gtk+-2.4.0
22
	>=dev-libs/libxml2-2.6.6
25
	>=dev-libs/libxml2-2.6.6
Lines 27-56 Link Here
27
	>=gnome-base/libgnomeui-2.5.2
30
	>=gnome-base/libgnomeui-2.5.2
28
	>=gnome-base/gnome-vfs-2
31
	>=gnome-base/gnome-vfs-2
29
	>=gnome-base/gnome-desktop-2.10.0
32
	>=gnome-base/gnome-desktop-2.10.0
30
	>=gnome-base/libglade-2.3.1
33
	>=gnome-base/libglade-2.3.1"
31
	app-text/scrollkeeper"
32
DEPEND="${RDEPEND}
34
DEPEND="${RDEPEND}
35
	app-text/scrollkeeper
33
	dev-util/pkgconfig
36
	dev-util/pkgconfig
34
	>=dev-util/intltool-0.30
37
	>=dev-util/intltool-0.30
35
	>=sys-devel/gettext-0.11"
38
	>=sys-devel/gettext-0.11"
36
39
37
DOCS="AUTHORS ChangeLog FAQ README README.ExtraPrefs THANKS TODO NEWS"
40
DOCS="AUTHORS ChangeLog FAQ README README.ExtraPrefs THANKS TODO NEWS"
38
41
39
src_unpack() {
42
pkg_setup() {
40
	gnome2_src_unpack
41
	cd "${S}"
42
	epatch "${FILESDIR}/${P}-maketest.diff"
43
}
44
45
src_compile() {
46
	if use xulrunner; then
43
	if use xulrunner; then
47
		myconf="--with-mozilla=xulrunner"
44
		G2CONF="${G2CONF} --with-gecko=xulrunner"
48
	elif use seamonkey; then
45
	elif use seamonkey; then
49
		myconf="--with-mozilla=seamonkey"
46
		G2CONF="${G2CONF} --with-gecko=seamonkey"
50
	else
47
	else
51
		myconf="--with-mozilla=firefox"
48
		G2CONF="${G2CONF} --with-gecko=firefox"
52
	fi
49
	fi
53
54
	econf ${myconf} || die "configure failed"
55
	emake || die "compile failed"
56
}
50
}

Return to bug 213372