blob: ef8e991e0d44e7367bee9f770a040258f2eed5b8 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/gnome-base/nautilus/nautilus-2.0.2.ebuild,v 1.2 2002/08/16 04:09:25 murphy Exp $
inherit gnome2
S=${WORKDIR}/${P}
DESCRIPTION="A filemanager for the Gnome2 desktop"
SRC_URI="mirror://gnome/sources/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.gnome.org/"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1 FDL-1.1"
KEYWORDS="x86 ppc sparc sparc64"
RDEPEND="app-admin/fam-oss
>=dev-libs/glib-2.0.1
>=gnome-base/gconf-1.1.11
>=x11-libs/gtk+-2.0.2
>=dev-libs/libxml2-2.4.22
>=gnome-base/gnome-vfs-1.9.16
>=media-sound/esound-0.2.27
>=gnome-base/bonobo-activation-1.0.0
>=gnome-base/eel-2.0.2
>=gnome-base/gail-0.16
>=gnome-base/libgnome-2.0.1
>=gnome-base/libgnomeui-2.0.0
>=gnome-base/gnome-desktop-2.0.0
>=media-libs/libart_lgpl-2.3.8-r1
>=gnome-base/libbonobo-2.0.0
>=gnome-base/libbonoboui-2.0.0
>=gnome-base/libgnomecanvas-2.0.0
>=gnome-base/librsvg-2.0.1
>=app-text/scrollkeeper-0.3.6
>=gnome-extra/gnome-utils-2.0.0"
DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.12.0"
G2CONF="${G2CONF} --enable-platform-gnome-2 --enable-gdialog=yes"
DOCS="AUTHORS COPYIN* ChangeLo* HACKING INSTALL MAINTAINERS NEWS README THANKS TODO"
src_compile () {
# Also apply the "reverse deps" patch.
#
# http://bugzilla.gnome.org/show_bug.cgi?id=75635
ELTCONF="${ELTCONF} --reverse-deps"
gnome2_src_configure ${1}
make || die "compile dislikes me"
}
|