blob: a3a11aea9b938dbec2348b6d7db720a5c6a3c53b (
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
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/nautilus/nautilus-2.12.0.ebuild,v 1.1 2005/09/12 02:11:38 dang Exp $
inherit gnome2 virtualx
DESCRIPTION="A file manager for the GNOME desktop"
HOMEPAGE="http://www.gnome.org/projects/nautilus/"
LICENSE="GPL-2 LGPL-2 FDL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="static"
# cups flac gstreamer mad ogg vorbis
RDEPEND=">=media-libs/libart_lgpl-2.3.10
>=gnome-base/libbonobo-2.1
>=gnome-base/eel-2.12
>=media-sound/esound-0.2.27
>=dev-libs/glib-2.6
>=gnome-base/gnome-desktop-2.9.91
>=gnome-base/libgnome-2.1.1
>=gnome-base/libgnomeui-2.6
>=gnome-base/gnome-vfs-2.11.1
>=gnome-base/orbit-2.4
>=x11-libs/pango-1.1.2
>=x11-libs/gtk+-2.6
>=gnome-base/librsvg-2.0.1
>=dev-libs/libxml2-2.4.7
>=x11-libs/startup-notification-0.8
>=media-libs/libexif-0.5.12
>=gnome-base/gconf-2
dev-libs/popt
virtual/x11
virtual/eject"
# !gstreamer? ( vorbis? ( media-sound/vorbis-tools ) )
# gstreamer? (
# >=media-libs/gstreamer-0.8
# >=media-libs/gst-plugins-0.8
# >=media-plugins/gst-plugins-gnomevfs-0.8
# mad? ( >=media-plugins/gst-plugins-mad-0.8 )
# ogg? ( >=media-plugins/gst-plugins-ogg-0.8 )
# vorbis? ( >=media-plugins/gst-plugins-vorbis-0.8 )
# flac? ( >=media-plugins/gst-plugins-flac-0.8 ) )"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.28
>=app-text/scrollkeeper-0.3.11
>=dev-util/pkgconfig-0.9"
PDEPEND=">=x11-themes/gnome-icon-theme-1.1.91
x11-themes/gnome-themes"
DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README THANKS TODO"
USE_DESTDIR="1"
pkg_setup() {
G2CONF="$(use_enable static)"
}
#src_unpack() {
# unpack "${A}"
# cd "${S}"
#
# # FIXME:Port this for 2.12 final
# # use gstreamer for audio preview (patch by <foser@gentoo.org>)
# use gstreamer && epatch ${FILESDIR}/${P}-icon_view_gst.patch
#
# # -- Component architecture has changed in 2.9 -- libgnomeprint patches
# # no longer apply.
#
# if use gstreamer; then
# WANT_AUTOCONF=2.5 autoheader || die
# WANT_AUTOCONF=2.5 autoconf || die
# WANT_AUTOMAKE=1.7 automake || die
# fi
#}
src_test() {
Xmake check || die
}
|