blob: 46ac1275d22b9286b15b37747b5c3bf31885860a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-pitfdll/gst-plugins-pitfdll-0.8.1-r1.ebuild,v 1.4 2005/12/05 23:13:56 zaheerm Exp $
inherit eutils
DESCRIPTION="GStreamer plugin for Win32 DLL loading"
HOMEPAGE="http://ronald.bitfreak.net/pitfdll.php"
MY_PN=${PN/gst-plugins-/}
MY_P=${MY_PN}-${PV}
SRC_URI="mirror://sourceforge/$MY_PN/$MY_P.tar.bz2"
# Create a major/minor combo for SLOT - stolen from gst-plugins-ffmpeg
PVP=(${PV//[-\._]/ })
SLOT=${PVP[0]}.${PVP[1]}
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE=""
S=${WORKDIR}/${MY_P}
DEPEND="=media-libs/gstreamer-0.8*
=media-libs/gst-plugins-0.8*"
RDEPEND="$DEPEND
media-libs/win32codecs"
src_unpack() {
unpack ${A}
# gcc4 fix
cd ${S}/gst-libs/ext/loader/wine
epatch ${FILESDIR}/${P}-gcc4.patch
cd ${S}/ext/pitfdll
epatch ${FILESDIR}/${P}-mutex.patch
}
src_install() {
make install DESTDIR="${D}" || die "install failed"
dodoc AUTHORS ChangeLog NEWS README
}
# ripped from gst-plugins.eclass
update_registry() {
einfo "Updating gstreamer plugins registry for gstreamer ${SLOT}..."
gst-register-${SLOT}
}
pkg_postinst() {
update_registry
}
pkg_postrm() {
update_registry
}
|