Magellan Linux

Annotation of /branches/R11-stable/extras/gstreamer1.0/gstreamer1.0-1.0.9-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18987 - (hide annotations) (download)
Tue Aug 20 10:02:31 2013 UTC (11 years, 1 month ago) by niro
Original Path: trunk/extras/gstreamer1.0/gstreamer1.0-1.0.9-r1.smage2
File size: 2322 byte(s)
-fix build with bison-3.0
1 niro 18986 # $Id$
2    
3     _realPNAME="gstreamer"
4 niro 18987 _realPVER="1.0.9"
5 niro 18986 _majorPVER="${_realPVER%.*}"
6    
7     PNAME="gstreamer${_majorPVER}"
8 niro 18987 PVER="${_realPVER}"
9 niro 18986 PBUILD="r1"
10    
11     PCAT="media-libs"
12    
13     DESCRIPTION="Streaming media framework version ${_majorPVER}."
14     HOMEPAGE="http://gstreamer.sourceforge.net/"
15    
16     # x86_64 specific dependencies
17     DEPEND_x86_64=">= sys-apps/multiarch-wrapper-1"
18     SPECIAL_VARS="DEPEND_x86_64"
19    
20     DEPEND="$(marchdepend)
21     >= dev-libs/glib2-2.36
22     >= dev-libs/libxml2-2.9"
23    
24     SDEPEND=">= sys-dev/gettext-0.18
25 niro 18987 >= sys-dev/bison-3.0
26 niro 18986 >= dev-util/pkgconfig-0.25
27     >= dev-libs/gobject-introspection-1.36"
28    
29     SRCFILE="${_realPNAME}-${PVER}.tar.xz"
30     SRCDIR="${BUILDDIR}/${_realPNAME}-${PVER}"
31    
32     # enable linux32 emulation for x86_64 arches
33     EMUL_LINUX_32=true
34    
35     sminclude mbuild mtools multilib
36    
37     SRC_URI=(
38     http://gstreamer.freedesktop.org/src/${_realPNAME}/${SRCFILE}
39     mirror://${_realPNAME}/${SRCFILE}
40 niro 18987 mirror://${_realPNAME}/gstreamer-1.0.9-bison30.patch
41 niro 18986 )
42    
43     UP2DATE="updatecmd http://gstreamer.freedesktop.org/src/${_realPNAME}/ | grep ${_realPNAME}-${_majorPVER} | lasttarball xz"
44    
45 niro 18987 src_prepare()
46     {
47     munpack ${SRCFILE} || die
48     cd ${SRCDIR}
49    
50     # fix build with bison-3.0
51     mpatch gstreamer-1.0.9-bison30.patch || die
52     }
53    
54 niro 18986 src_compile()
55     {
56     local myconf
57     [[ ${ARCH} = x86_64 ]] && myconf=--program-suffix=-$(mabi)
58    
59     # use libexecdir=/usr/$(mlibdir)
60     # the makefile installes the libexec data into a gstreamer-0.10 dir
61     # which gets already installed in /usr/$(mlibdir)
62     mconfigure \
63     --libexecdir=/usr/$(mlibdir) \
64     --enable-introspection \
65     --disable-tests \
66     --disable-examples \
67     --disable-gtk-doc \
68     ${myconf} \
69     || die
70    
71     mmake || die
72     }
73    
74     src_install()
75     {
76     mmake DESTDIR=${BINDIR} install || die
77    
78     if [[ ${ARCH} = x86_64 ]]
79     then
80     # install multiarch-wrapper
81     mlink multiarch-wrapper /usr/bin/gst-feedback-${_majorPVER} || die
82     mlink multiarch-wrapper /usr/bin/gst-inspect-${_majorPVER} || die
83     mlink multiarch-wrapper /usr/bin/gst-launch-${_majorPVER} || die
84     mlink multiarch-wrapper /usr/bin/gst-typefind-${_majorPVER} || die
85     mlink multiarch-wrapper /usr/bin/gst-xmlinspect-${_majorPVER} || die
86     mlink multiarch-wrapper /usr/bin/gst-xmllaunch-${_majorPVER} || die
87     mlink multiarch-wrapper /usr/$(mlibdir)/gstreamer-${_majorPVER}/gst-plugin-scanner || die
88     fi
89    
90     minstalldocs AUTHORS CONTRIBUTORS COPYING* ChangeLog NEWS README TODO || die
91     }