blob: 7c64eb49ef61f7e4fc3a9a7196b5431d2e13d6c0 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/nautilus/nautilus-2.2.1.ebuild,v 1.4 2003/02/22 17:40:25 agriffis Exp $
inherit gnome2 eutils
S=${WORKDIR}/${P}
DESCRIPTION="A filemanager for the Gnome2 desktop"
HOMEPAGE="http://www.gnome.org/"
SLOT="0"
LICENSE="GPL-2 LGPL-2 FDL-1.1"
KEYWORDS="~x86 ~ppc ~alpha"
IUSE="oggvorbis"
RDEPEND="app-admin/fam-oss
>=dev-libs/glib-2
>=x11-libs/pango-1.1.2
>=x11-libs/gtk+-2.1.1
>=dev-libs/libxml2-2.4.7
>=gnome-base/gnome-vfs-2.1.5
>=media-sound/esound-0.2.27
>=gnome-base/bonobo-activation-2
>=gnome-base/eel-${PV}
>=gnome-base/libgnome-2.1.1
>=gnome-base/libgnomeui-2.1.1
>=gnome-base/gnome-desktop-2.1
>=media-libs/libart_lgpl-2.3.10
>=gnome-base/libbonobo-2.1
>=gnome-base/libbonoboui-2
>=gnome-base/librsvg-2.0.1
>=gnome-base/ORBit2-2.4
sys-apps/eject
oggvorbis? ( media-sound/vorbis-tools )
x11-themes/gnome-icon-theme
x11-themes/gnome-themes"
DEPEND="${RDEPEND}
>=app-text/scrollkeeper-0.3.11
>=dev-util/pkgconfig-0.12.0
>=gnome-base/gconf-1.2.1"
G2CONF="${G2CONF} --enable-gdialog=yes"
DOCS="AUTHORS COPYIN* ChangeLo* HACKING INSTALL MAINTAINERS NEWS README THANKS TODO"
src_unpack() {
unpack ${A}
cd ${S}
# Fix bug 15450: nautilus-2.2.0.2 doesn't build without
# optimization. We'll need this patch until it's fixed upstream.
epatch ${FILESDIR}/${PN}-2.2.0.2-locale.patch
# Fix bug #15984: double rightclick menus on localized systems
epatch ${FILESDIR}/${PN}-2.2-double_menu_entry_fix.patch
}
|