* 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

@@ -8,12 +8,14 @@ REVISION="1"
STATUS_HAIKU="broken"
DEPEND="dev-util/scons >= 1.0.1
dev-lang/python >= 2.6.0"
BUILD {
BUILD()
{
cd blender-2.49b
scons
}
INSTALL {
INSTALL()
{
# TODO
exit 1
}

View File

@@ -7,7 +7,8 @@ STATUS_HAIKU="stable"
DEPEND="dev-util/pkconfig >= 0.23"
BUILD {
BUILD()
{
cd flam3-3.0/src
if [ -n "$(setgcc | grep '2')" ]; then
patch -p0 -ui ../../../patches/flam3-3.0-gcc2.patch
@@ -18,7 +19,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd flam3-3.0/src
make install
}

View File

@@ -5,7 +5,8 @@ CHECKSUM_MD5="5f3d20d645ec1aa2b7b4876386df8717"
REVISION="1"
STATUS_HAIKU="broken"
DEPEND=""
BUILD {
BUILD()
{
cd fontforge-20100501
libtoolize --force --copy --install
aclocal
@@ -14,7 +15,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd fontforge-20100501
make install
}

View File

@@ -5,7 +5,8 @@ CHECKSUM_MD5="806a30dbc3f8deb219216f35be0e7a40"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd graphviz-2.24.0
libtoolize -fci
aclocal -I m4
@@ -18,7 +19,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd graphviz-2.24.0
make install
cd `finddir B_COMMON_BIN_DIRECTORY`

View File

@@ -5,7 +5,8 @@ CHECKSUM_MD5="6f45946fa622770c45609778c0a982ee"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd graphviz-2.26.3
libtoolize -fci
autoconf
@@ -17,7 +18,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd graphviz-2.26.3
make install
}

View File

@@ -7,14 +7,16 @@ DEPEND="media-libs/devil >= 1.7.8"
MESSAGE="This port only builds with gcc4. Use 'setgcc gcc4' before building."
CHECKSUM_MD5="e4d3132b5f3614a75975b62fe6a066bb"
BUILD {
BUILD()
{
cd hqx-1.1
./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
}
INSTALL {
INSTALL()
{
cd hqx-1.1
make install

View File

@@ -13,7 +13,8 @@ DEPEND="media-libs/libpng,
media-libs/lcms,
media-libs/freetype"
CHECKSUM_MD5="fa42577f4d9ab23171bc6824b515ca13"
BUILD {
BUILD()
{
cd ImageMagick-6.6.1-10
libtoolize --force
aclocal -I m4
@@ -27,7 +28,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd ImageMagick-6.6.1-10
make install
}

View File

@@ -6,11 +6,13 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd pngcrush-1.7.11-nolib
make
}
INSTALL {
INSTALL()
{
cd pngcrush-1.7.11-nolib
mkdir -p ${DESTDIR}`finddir B_COMMON_BIN_DIRECTORY`
cp -a -f pngcrush ${DESTDIR}`finddir B_COMMON_BIN_DIRECTORY`

View File

@@ -6,11 +6,13 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd pngcrush-1.7.12-nolib
make
}
INSTALL {
INSTALL()
{
cd pngcrush-1.7.12-nolib
mkdir -p ${DESTDIR}`finddir B_COMMON_BIN_DIRECTORY`
cp -a -f pngcrush ${DESTDIR}`finddir B_COMMON_BIN_DIRECTORY`

View File

@@ -5,12 +5,14 @@ CHECKSUM_MD5="79fdedccf761f6391c11aa851c9fc6b2"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd pngcrush-1.7.6-nolib
make
}
INSTALL {
INSTALL()
{
cd pngcrush-1.7.6-nolib
cp -a -f pngcrush `finddir B_COMMON_BIN_DIRECTORY`
}

View File

@@ -6,7 +6,8 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
cd potrace-1.8
libtoolize --force --copy --install
aclocal
@@ -16,7 +17,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd potrace-1.8
make install
}

View File

@@ -15,12 +15,14 @@ DEPEND="media-libs/libsdl >= 1.2.14
dev-util/pkgconfig >= 0.23
sys-devel/gettext >= 0.17"
BUILD {
BUILD()
{
cd tuxpaint-0.9.21
make
}
INSTALL {
INSTALL()
{
cd tuxpaint-0.9.21
make install
}

View File

@@ -15,7 +15,8 @@ DEPEND="media-libs/libsdl >= 1.2.14
sys-devel/gettext >= 0.17
dev-utils/gperf >= 3.0.4"
BUILD {
BUILD()
{
cd tuxpaint-0.9.2x-cvs
if [ ! -f /boot/common/lib/libstdc++.so ]
then
@@ -24,7 +25,8 @@ BUILD {
make
}
INSTALL {
INSTALL()
{
cd tuxpaint-0.9.2x-cvs
make install DESTDIR=${DESTDIR}
}