* convert all .bep files to follow shell syntax

* rename all .bep files to .recipe
This commit is contained in:
Oliver Tappe
2013-03-29 16:31:03 +00:00
parent 94cc6aaf85
commit 60aba35d64
937 changed files with 4094 additions and 2047 deletions

View File

@@ -9,7 +9,8 @@ DEPEND="media-libs/libogg >= 1.3.0
media-libs/libtheora >= 1.1.0
media-libs/libvorbis >= 1.3.2
media-libs/libvpx >= 1.0.0"
BUILD {
BUILD()
{
cd ffmpeg-0.10.2
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --enable-shared \
--enable-libvorbis --enable-libspeex --enable-libtheora --enable-libvpx \
@@ -17,7 +18,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-0.10.2
make install
}

View File

@@ -9,7 +9,8 @@ DEPEND="media-libs/libogg >= 1.3.0
media-libs/libtheora >= 1.1.0
media-libs/libvorbis >= 1.3.2
media-libs/libvpx >= 1.0.0"
BUILD {
BUILD()
{
cd ffmpeg-0.10.2
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --enable-shared \
--enable-libvorbis --enable-libspeex --enable-libtheora --enable-libvpx \
@@ -17,7 +18,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-0.10.2
make install
}

View File

@@ -9,14 +9,16 @@ DEPEND="media-libs/libogg >= 1.3.0
media-libs/libtheora >= 1.1.0
media-libs/libvorbis >= 1.3.2
media-libs/libvpx >= 1.0.0"
BUILD {
BUILD()
{
cd ffmpeg-0.10
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --enable-shared \
--enable-libvorbis --enable-libspeex --enable-libtheora --enable-libvpx
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-0.10
make install
}

View File

@@ -9,7 +9,8 @@ DEPEND="media-libs/libogg >= 1.3.0
media-libs/libtheora >= 1.1.0
media-libs/libvorbis >= 1.3.2
media-libs/libvpx >= 1.0.0"
BUILD {
BUILD()
{
cd ffmpeg-0.11.1
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --enable-shared \
--enable-libvorbis --enable-libspeex --enable-libtheora --enable-libvpx \
@@ -17,7 +18,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-0.11.1
make install
}

View File

@@ -5,13 +5,15 @@ CHECKSUM_MD5="be8503f15c3b81ba00eb8379ca8dcf33"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd ffmpeg-0.5
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --disable-mmx --enable-shared
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-0.5
make install
}

View File

@@ -5,13 +5,15 @@ CHECKSUM_MD5="d6142a9a5821d6a6262a6edb903faa24"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd ffmpeg-0.6
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --disable-mmx --enable-shared
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-0.6
make install
}

View File

@@ -5,14 +5,16 @@ SRC_URI="svn://svn.ffmpeg.org/ffmpeg/trunk#23081"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd ffmpeg-23081
chmod 777 configure
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --disable-mmx --enable-shared --enable-gpl
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-23081
make install
}

View File

@@ -5,14 +5,16 @@ SRC_URI="svn://svn.ffmpeg.org/ffmpeg/trunk#7407"
REVISION="1"
STATUS_HAIKU="broken"
DEPEND=""
BUILD {
BUILD()
{
cd ffmpeg-7407
chmod 777 configure
./configure --prefix=`finddir B_COMMON_DIRECTORY` --disable-debug --disable-mmx --enable-shared --enable-gpl --enable-pp
make
}
INSTALL {
INSTALL()
{
cd ffmpeg-7407
make install
}