blob: 38379a3982513f686cf775b870a49eb1d5cea10f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/winki/winki-0.3.2.ebuild,v 1.4 2006/04/17 15:03:59 flameeyes Exp $
inherit distutils eutils
DESCRIPTION="A Python frontend to many popular encoding programs."
HOMEPAGE="http://www.informatik.hu-berlin.de/~hristov/projects/winki/index.html"
SRC_URI="http://www.informatik.hu-berlin.de/~hristov/projects/winki/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="vcd css"
DEPEND=">=dev-lang/python-2.3
>=dev-python/gnome-python-2
>=dev-python/pygtk-2
>=dev-python/pyorbit-2
vcd? ( media-libs/libdvb )
css? ( media-libs/libdvdcss )"
RDEPEND="${DEPEND}
media-video/mplayer
media-video/lsdvd
media-sound/ogmtools
media-sound/vorbis-tools
vcd? ( media-video/vcdimager )"
pkg_setup() {
if ! built_with_use media-video/mplayer encode; then
eerror "You need media-video/mplayer built with the \"encode\" useflag to"
eerror "use winki. Please rebuild mplayer with the \"encode\" useflag."
die "Missing \"encode\" useflag on mplayer."
fi
}
src_unpack() {
unpack ${A}
cd ${S}
#fixes some sandbox violations
#and the sudden odd urge for upstream
#to want data files in /opt :|
epatch ${FILESDIR}/${P}.patch
#remove their "hard coding" of /opt/winki
cd ${S}/winki
for bad_code in *
do
if [ -f $bad_code ] ; then
sed -e "s:/opt/winki:/usr/share/winki:" -i $bad_code || die "/opt to /usr/share patching failed!"
fi
done
}
|