added dependencies for ffmpeg and libtheora, fixes speex install step

This commit is contained in:
korli
2012-03-09 19:00:11 +00:00
parent d1d3c31146
commit cf7334d36c
3 changed files with 9 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ HOMEPAGE="http://www.theora.org/"
SRC_URI="http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
DEPEND="media-libs/libogg >= 1.2.0"
CHECKSUM_MD5="292ab65cedd5021d6b7ddd117e07cd8e"
BUILD {
cd libtheora-1.1.1

View File

@@ -4,7 +4,7 @@ SRC_URI="http://downloads.xiph.org/releases/speex/speex-1.2rc1.tar.gz"
CHECKSUM_MD5="c4438b22c08e5811ff10e2b06ee9b9ae"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
DEPEND="pkgconfig >= 0.25"
BUILD {
cd speex-1.2rc1
libtoolize --copy --force --install
@@ -16,6 +16,7 @@ BUILD {
}
INSTALL {
cd speex-1.2rc1
make install
}
LICENSE="Speex"

View File

@@ -4,10 +4,14 @@ SRC_URI="http://www.ffmpeg.org/releases/ffmpeg-0.10.tar.bz2"
CHECKSUM_MD5="dc665cc599a739e3c5262ccdac13d129"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
DEPEND="media-libs/libogg >= 1.3.0
media-libs/speex >= 1.2rc1
media-libs/libtheora >= 1.1.0
media-libs/libvorbis >= 1.3.2"
BUILD {
cd ffmpeg-0.10
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --disable-mmx --enable-shared
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --disable-mmx --enable-shared \
--enable-libvorbis --enable-libspeex --enable-libtheora
make
}