Magellan Linux

Annotation of /branches/magellan-next/core/gstreamer/gstreamer-0.11.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9103 - (hide annotations) (download)
Mon Nov 7 08:59:40 2011 UTC (12 years, 6 months ago) by niro
File size: 973 byte(s)
auto added: ver bump to 0.11.1-r1
1 niro 9103 # $Id$
2    
3     PNAME="gstreamer"
4     PVER="0.11.1"
5     PBUILD="r1"
6    
7     PCATEGORIE="media-libs"
8    
9     DESCRIPTION="Streaming media framework."
10     HOMEPAGE="http://gstreamer.sourceforge.net/"
11    
12     DEPEND=">= dev-libs/glib2-2.28
13     >= dev-libs/libxml2-2.7
14     >= dev-libs/gobject-introspection-0.10"
15    
16     SDEPEND=">= sys-dev/gettext-0.18
17     >= dev-util/pkgconfig-0.25"
18    
19     SRCFILE="${PNAME}-${PVER}.tar.bz2"
20     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21    
22     sminclude mbuild
23    
24     SRC_URI=(
25     http://gstreamer.freedesktop.org/src/${PNAME}/${SRCFILE}
26     mirror://${PNAME}/${SRCFILE}
27     )
28    
29     UP2DATE="updatecmd http://gstreamer.freedesktop.org/src/${PNAME}/ | lasttarball"
30    
31     src_compile()
32     {
33     cd ${SRCDIR}
34    
35     # use libexecdir=/usr/$(mlibdir)
36     # the makefile installes the libexec data into a gstreamer-0.10 dir
37     # which gets already installed in /usr/$(mlibdir)
38     mconfigure \
39     --libexecdir=/usr/$(mlibdir) \
40     --enable-introspection \
41     --disable-static \
42     --disable-tests \
43     --disable-examples \
44     --disable-gtk-doc \
45     || die
46    
47     mmake || die
48     }