1
0
forked from ports/contrib

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2006-12-10 20:23:23 +11:00
# Description: An essential exemplary set of plugins for gstreamer.
# URL: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html
2008-03-26 13:45:31 +11:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2006-12-10 20:23:23 +11:00
# Packager: Matt Housh, jaeger at morpheus dot net
2008-10-06 02:37:32 +11:00
# Depends on: gstreamer alsa-lib liboil libtheora cdparanoia pango libvisual xorg-libxv gtk
2006-12-10 20:23:23 +11:00
name=gst-plugins-base
2008-10-06 02:37:32 +11:00
version=0.10.21
2006-12-10 20:23:23 +11:00
release=1
source=(http://gstreamer.freedesktop.org/src/$name/$name-$version.tar.bz2
$name-0.10.21-gtkdoc_libtheora_generated.patch)
2006-12-10 20:23:23 +11:00
build() {
cd $name-$version
2006-12-10 20:23:23 +11:00
# this patch created with autoconf-2.61 automake-1.10.1 in chroot
patch -p 1 -i $SRC/$name-0.10.21-gtkdoc_libtheora_generated.patch
# origional patch wont work on recent autoconf and automake versions.
#patch -p 1 -i $SRC/$name-0.10.21-gtkdoc-rebase.patch
#patch -p 1 -i $SRC/$name-0.10.21-libtheora-version-check.patch
#automake
#autoconf
2008-10-06 02:37:32 +11:00
2006-12-10 20:23:23 +11:00
./configure \
--prefix=/usr \
--mandir=/usr/man \
2007-08-04 17:50:47 +10:00
--disable-static \
--disable-debug \
--disable-nls \
2008-10-06 02:37:32 +11:00
--disable-examples
2006-12-10 20:23:23 +11:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
2006-12-10 20:23:23 +11:00
}