blob: 301f54ffd1fc0cd9a5890632dcd46944f8f8ca89 (
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
|
# 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-ffmpeg/gst-plugins-ffmpeg-0.8.2.ebuild,v 1.4 2005/01/30 10:16:09 lanius Exp $
inherit flag-o-matic
MY_PN=${PN/-plugins/}
MY_P=${MY_PN}-${PV}
# Create a major/minor combo for SLOT
PVP=(${PV//[-\._]/ })
SLOT=${PVP[0]}.${PVP[1]}
DESCRIPTION="FFmpeg based gstreamer plugin"
LICENSE="GPL-2"
SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2"
HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html"
KEYWORDS="x86 ~ppc ~sparc amd64"
IUSE=""
S=${WORKDIR}/${MY_P}
DEPEND=">=media-libs/gstreamer-0.8
dev-util/pkgconfig"
src_compile() {
# just a few random flags, see #56075
filter-flags "-Os" "-O3" "-fforce-addr"
strip-flags
econf || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
# ripped from the gst-plugins eclass
update_registry() {
einfo "Updating gstreamer plugins registry for gstreamer ${SLOT}..."
gst-register-${SLOT}
}
pkg_postinst() {
update_registry
}
pkg_postrm() {
update_registry
}
|