gst_plugins_good: fix provides.

This commit is contained in:
Gerasim Troeglazov
2017-06-07 21:42:45 +10:00
parent 75455801d2
commit b9118c882c

View File

@@ -5,7 +5,7 @@ for the supporting library)."
HOMEPAGE="http://gstreamer.freedesktop.org/" HOMEPAGE="http://gstreamer.freedesktop.org/"
COPYRIGHT="Erik Walthinsen" COPYRIGHT="Erik Walthinsen"
LICENSE="GNU LGPL v2" LICENSE="GNU LGPL v2"
REVISION="2" REVISION="3"
SOURCE_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-$portVersion.tar.xz" SOURCE_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-$portVersion.tar.xz"
CHECKSUM_SHA256="77a8436a7c0a15f876bad29616835046890df2bcaf72da02151bd91e3d292b64" CHECKSUM_SHA256="77a8436a7c0a15f876bad29616835046890df2bcaf72da02151bd91e3d292b64"
SOURCE_DIR="gst-plugins-good-$portVersion" SOURCE_DIR="gst-plugins-good-$portVersion"
@@ -15,16 +15,17 @@ ARCHITECTURES="!x86_gcc2 ?x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86" SECONDARY_ARCHITECTURES="x86"
PROVIDES=" PROVIDES="
gst_plugins_good${secondaryArchSuffix} = $portVersion gst_plugins_good_0.10$secondaryArchSuffix = $portVersion
" "
REQUIRES=" REQUIRES="
haiku$secondaryArchSuffix haiku$secondaryArchSuffix
gst_plugins_base${secondaryArchSuffix} gst_plugins_base_0.10$secondaryArchSuffix
lib:libgstreamer$secondaryArchSuffix lib:libgstreamer_0.10$secondaryArchSuffix
lib:libz$secondaryArchSuffix lib:libz$secondaryArchSuffix
lib:libbz2$secondaryArchSuffix
lib:libxml2$secondaryArchSuffix lib:libxml2$secondaryArchSuffix
lib:libfreetype$secondaryArchSuffix lib:libfreetype$secondaryArchSuffix
lib:libpng$secondaryArchSuffix lib:libpng16$secondaryArchSuffix
lib:libjpeg$secondaryArchSuffix lib:libjpeg$secondaryArchSuffix
lib:libglib_2.0$secondaryArchSuffix lib:libglib_2.0$secondaryArchSuffix
lib:libiconv$secondaryArchSuffix lib:libiconv$secondaryArchSuffix
@@ -32,6 +33,8 @@ REQUIRES="
lib:libtag$secondaryArchSuffix lib:libtag$secondaryArchSuffix
lib:libspeex$secondaryArchSuffix lib:libspeex$secondaryArchSuffix
lib:libflac$secondaryArchSuffix lib:libflac$secondaryArchSuffix
lib:libogg$secondaryArchSuffix
lib:libvorbis$secondaryArchSuffix
lib:libsoup$secondaryArchSuffix lib:libsoup$secondaryArchSuffix
lib:libsqlite3$secondaryArchSuffix lib:libsqlite3$secondaryArchSuffix
lib:liborc_0.4$secondaryArchSuffix lib:liborc_0.4$secondaryArchSuffix
@@ -39,9 +42,9 @@ REQUIRES="
BUILD_REQUIRES=" BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel haiku${secondaryArchSuffix}_devel
gst_plugins_base${secondaryArchSuffix}_devel gst_plugins_base_0.10${secondaryArchSuffix}_devel
devel:libgstreamer_0.10$secondaryArchSuffix
devel:libtag$secondaryArchSuffix devel:libtag$secondaryArchSuffix
devel:libgstreamer$secondaryArchSuffix
devel:libfreetype$secondaryArchSuffix devel:libfreetype$secondaryArchSuffix
devel:libpng$secondaryArchSuffix devel:libpng$secondaryArchSuffix
devel:libjpeg$secondaryArchSuffix devel:libjpeg$secondaryArchSuffix
@@ -50,6 +53,8 @@ BUILD_REQUIRES="
devel:libxml2$secondaryArchSuffix devel:libxml2$secondaryArchSuffix
devel:libspeex$secondaryArchSuffix devel:libspeex$secondaryArchSuffix
devel:libflac$secondaryArchSuffix devel:libflac$secondaryArchSuffix
devel:libvorbis$secondaryArchSuffix
devel:libogg$secondaryArchSuffix
devel:libsoup$secondaryArchSuffix devel:libsoup$secondaryArchSuffix
devel:libsqlite3$secondaryArchSuffix devel:libsqlite3$secondaryArchSuffix
devel:liborc_0.4$secondaryArchSuffix devel:liborc_0.4$secondaryArchSuffix
@@ -58,7 +63,6 @@ BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix cmd:ld$secondaryArchSuffix
cmd:pkg_config$secondaryArchSuffix cmd:pkg_config$secondaryArchSuffix
cmd:libtool
cmd:aclocal cmd:aclocal
cmd:autoconf cmd:autoconf
cmd:libtoolize$secondaryArchSuffix cmd:libtoolize$secondaryArchSuffix
@@ -74,8 +78,8 @@ BUILD_PREREQUIRES="
BUILD() BUILD()
{ {
runConfigure ./configure --disable-examples --disable-debug --disable-nls \ runConfigure ./configure --disable-examples --disable-debug --disable-nls \
--disable-oss --disable-oss4 \
--with-default-audiosink=sdlaudiosink --with-default-videosink=sdlvideosink --with-default-audiosink=sdlaudiosink --with-default-videosink=sdlvideosink
find -type f -name '*' -exec sed -i 's/-lpthread/-lroot/g' {} \;
make $jobArgs make $jobArgs
} }