blob: 2453ec095389efcaece08c4e6c1926f0497e6abc (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/totem/totem-1.2.0.ebuild,v 1.4 2005/09/16 20:42:57 dang Exp $
inherit gnome2 eutils multilib
DESCRIPTION="Media player for GNOME"
HOMEPAGE="http://gnome.org/projects/totem/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gnome xine lirc mad mpeg ogg vorbis a52 flac theora dvd debug mozilla firefox win32codecs xv"
RDEPEND=">=dev-libs/glib-2.6.3
>=x11-libs/gtk+-2.6
>=gnome-base/gnome-vfs-2.9.92
>=gnome-base/libglade-2
>=gnome-base/gnome-desktop-2.2
>=gnome-base/libgnomeui-2.4
>=x11-themes/gnome-icon-theme-2.10
app-text/iso-codes
media-libs/musicbrainz
gnome? ( >=gnome-base/nautilus-2.10 )
lirc? ( app-misc/lirc )
xine? ( >=media-libs/xine-lib-1
>=gnome-base/gconf-2 )
!xine? ( >=media-libs/gstreamer-0.8.10
>=media-libs/gst-plugins-0.8.10
>=media-plugins/gst-plugins-gnomevfs-0.8.10
xv? ( >=media-plugins/gst-plugins-xvideo-0.8.10 )
>=media-plugins/gst-plugins-pango-0.8.10
>=media-plugins/gst-plugins-ffmpeg-0.8.6
mad? ( >=media-plugins/gst-plugins-mad-0.8.10 )
mpeg? ( >=media-plugins/gst-plugins-mpeg2dec-0.8.10 )
ogg? ( >=media-plugins/gst-plugins-ogg-0.8.10 )
vorbis? ( >=media-plugins/gst-plugins-ogg-0.8.10
>=media-plugins/gst-plugins-vorbis-0.8.10 )
a52? ( >=media-plugins/gst-plugins-a52dec-0.8.10 )
flac? ( >=media-plugins/gst-plugins-flac-0.8.10 )
theora? ( >=media-plugins/gst-plugins-ogg-0.8.10
>=media-plugins/gst-plugins-theora-0.8.10 )
mad? ( >=media-plugins/gst-plugins-mad-0.8.10 )
dvd? ( >=media-plugins/gst-plugins-a52dec-0.8.10
>=media-plugins/gst-plugins-dvdread-0.8.10
>=media-plugins/gst-plugins-mpeg2dec-0.8.10
>=media-plugins/gst-plugins-dvdnav-0.8.11 )
win32codecs? ( >=media-plugins/gst-plugins-pitfdll-0.8.1 )
)
firefox? ( >=www-client/mozilla-firefox-1.0.2-r1
>=sys-apps/dbus )
!firefox? ( mozilla? ( >=www-client/mozilla-1.7.3
>=sys-apps/dbus ) )
!gnome-extra/nautilus-media"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=dev-util/intltool-0.29
>=dev-util/pkgconfig-0.12.0"
DOCS="AUTHORS ChangeLog COPYING README INSTALL NEWS TODO"
pkg_setup() {
# gstreamer is default backend
use xine || G2CONF="${G2CONF} --enable-gstreamer"
G2CONF="${G2CONF} \
$(use_enable lirc) \
$(use_enable debug) \
$(use_enable gnome nautilus) \
--disable-gtk"
if use firefox; then
G2CONF="${G2CONF} \
--enable-mozilla \
--with-mozilla=firefox"
elif use mozilla and !use firefox; then
G2CONF="${G2CONF} \
--enable-mozilla \
--with-mozilla=mozilla"
else
G2CONF="${G2CONF}
--disable-mozilla"
fi
# Use global nsplugins dir
G2CONF="${G2CONF} MOZILLA_PLUGINDIR=/usr/$(get_libdir)/nsbrowser"
}
src_unpack() {
unpack ${A}
cd ${S}
gnome2_omf_fix help/C/Makefile.in \
help/de/Makefile.in \
help/es/Makefile.in \
help/ru/Makefile.in
# fix the IDL path ( AllanonJL )
epatch ${FILESDIR}/totem-1.1.5-idl.patch
# fix nsIDOMWindow.h include ( AllanonJL )
epatch ${FILESDIR}/totem-1.1.5-nsi.patch
# fix for italian translation
epatch ${FILESDIR}/totem-1.2.0-lang_it_fix.patch
einfo "Regenerating autotools files..."
export WANT_AUTOMAKE=1.9.5
export WANT_AUTOCONF=2.5
automake; aclocal -I .; libtoolize --copy --force; autoconf
}
pkg_postinst() {
gnome2_pkg_postinst
einfo "Note that the default totem backend has switched to gstreamer."
einfo "DVD menus will only work with the xine backend."
}
USE_DESTDIR="1"
|