blob: 467ff09d0e75bd2e2ef7144ed4323bfc4b394bf0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/gstreamer-0.8.11.ebuild,v 1.6 2006/01/22 19:30:46 corsair Exp $
inherit eutils flag-o-matic libtool gnome2 flag-o-matic
# Create a major/minor combo for our SLOT and executables suffix
PVP=(${PV//[-\._]/ })
PV_MAJ_MIN=${PVP[0]}.${PVP[1]}
DESCRIPTION="Streaming media framework"
HOMEPAGE="http://gstreamer.sourceforge.net"
SRC_URI="http://gstreamer.freedesktop.org/src/gstreamer/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT=${PV_MAJ_MIN}
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc-macos ppc64 sparc x86"
IUSE="doc"
RDEPEND=">=dev-libs/glib-2.2
>=dev-libs/libxml2-2.4.9
>=dev-libs/popt-1.6.3"
DEPEND="${RDEPEND}
>=sys-devel/gettext-0.11.5
dev-util/pkgconfig
doc? ( dev-util/gtk-doc
=app-text/docbook-xml-dtd-4.2* )"
src_unpack() {
unpack ${A}
cd ${S}
# Fix doc generation with jade. See bug #55700.
epatch ${FILESDIR}/${PN}-0.8.3-jade_fix.patch
}
src_compile() {
# FIXME : Ugly fix for docs generation gst cache problem (#57002)
use doc && addpredict /var && addpredict /root
elibtoolize
strip-flags
replace-flags "-O3" "-O2"
replace-flags "-Os" "-O2"
econf \
--with-configdir=/etc/gstreamer \
--disable-tests \
--disable-examples \
`use_enable doc docs-build` \
|| die "./configure failed"
# On alpha, amd64 and hppa some innocuous warnings are spit out that break
# the build because of -Werror
use alpha && find . -name Makefile | xargs sed -i -e 's/-Werror//g'
use amd64 && find . -name Makefile | xargs sed -i -e 's/-Werror//g'
use hppa && find . -name Makefile | xargs sed -i -e 's/-Werror//g'
emake || die "compile failed"
}
src_install() {
make DESTDIR=${D} install || die
# remove the unversioned binaries gstreamer provide
# this is to prevent these binaries to be owned by several SLOTs
cd ${D}/usr/bin
for gst_bins in `ls *-${PV_MAJ_MIN}`
do
rm ${gst_bins/-${PV_MAJ_MIN}/}
einfo "Removed ${gst_bins/-${PV_MAJ_MIN}/}"
done
cd ${S}
dodoc AUTHORS ChangeLog COPYING* DEVEL \
NEWS README RELEASE REQUIREMENTS TODO
dodir /etc/env.d/
echo "PRELINK_PATH_MASK=/usr/lib/${PN}-${PV_MAJ_MIN}" > ${D}/etc/env.d/60${PN}-${PV_MAJ_MIN}
}
pkg_postinst() {
gst-register-${PV_MAJ_MIN}
einfo "Gstreamer has known problems with prelinking, as a workaround"
einfo "this ebuild adds the gstreamer plugins to the prelink mask"
einfo "path to stop them from being prelinked. It is imperative"
einfo "that you undo & redo prelinking after building this pack for"
einfo "this to take effect. Make sure the gstreamer lib path is indeed"
einfo "added to the PRELINK_PATH_MASK environment variable."
einfo "For more information see http://bugs.gentoo.org/show_bug.cgi?id=81512"
}
|