Skip to content

Commit

Permalink
Convert some remaining bep syntax to shell syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuman committed Dec 7, 2013
1 parent 086409b commit 72ac1f8
Show file tree
Hide file tree
Showing 13 changed files with 54 additions and 27 deletions.
9 changes: 6 additions & 3 deletions dev-lang/openjdk/openjdk-1.7.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ DEPEND="app-arch/cpio = 2.10

CHECKSUM_MD5="e38b939c34b04427336245397fa43c9c"

BUILD {
BUILD()
{
OPENJDK_DIR=`haikuporter -t`/dev-lang/openjdk/work

# Get and build Apache Ant.
Expand Down Expand Up @@ -161,7 +162,8 @@ BUILD {
# fi
}

INSTALL {
INSTALL()
{
# install
mkdir -p `finddir B_COMMON_DIRECTORY`/jdk
cp -r -f -v output/j2sdk-image/* `finddir B_COMMON_DIRECTORY`/jdk
Expand All @@ -175,7 +177,8 @@ INSTALL {
cp -f $(haikuporter -t)/dev-lang/openjdk/openjdk_setup_env.sh ${DESTDIR}/boot/common/boot/post_install
}

TEST {
TEST()
{
echo "OpenJDK tests are not yet ported to Haiku."
}

Expand Down
6 changes: 4 additions & 2 deletions dev-libs/libcss/libcss-0.2.0_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-libs/libparserutils >= 0.1.1"

BUILD {
BUILD()
{
cd libcss-0.2.0-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd libcss-0.2.0-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions dev-libs/libparserutils/libparserutils-0.1.2_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-util/buildsystem >= 0.0.1"

BUILD {
BUILD()
{
cd libparserutils-0.1.2-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd libparserutils-0.1.2-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions dev-libs/libwapcaplet/libwapcaplet-0.2.0_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-util/buildsystem >= 0"

BUILD {
BUILD()
{
cd libwapcaplet-0.2.0-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd libwapcaplet-0.2.0-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions dev-util/buildsystem/buildsystem-1.0_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ SRC_URI="git://git.netsurf-browser.org/buildsystem.git"
REVISION="1"
STATUS_HAIKU="stable"

BUILD {
BUILD()
{
cd buildsystem-1.0-HEAD
make
}

INSTALL {
INSTALL()
{
cd buildsystem-1.0-HEAD
make install PREFIX=/boot/common/
}
Expand Down
6 changes: 4 additions & 2 deletions dev-util/pkgconfig/pkgconfig-0.28.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ CHECKSUM_MD5="aa3c86e67551adc3ac865160e34a2a0d"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
BUILD()
{
# because we patched configure.ac...
cd pkg-config-0.28/glib
autoreconf -i -f
Expand All @@ -22,7 +23,8 @@ BUILD {
make
}

INSTALL {
INSTALL()
{
cd pkg-config-0.28
make install
}
Expand Down
6 changes: 4 additions & 2 deletions media-libs/libnsbmp/libnsbmp-0.1.0_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-util/buildsystem >= 0.0.1"

BUILD {
BUILD()
{
cd libnsbmp-0.1.0-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd libnsbmp-0.1.0-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions media-libs/libnsgif/libnsgif-0.1.0_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-util/buildsystem >= 0.0.1"

BUILD {
BUILD()
{
cd libnsgif-0.1.0-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd libnsgif-0.1.0-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions media-libs/libsvgtiny/libsvgtiny-0.1.0_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ DEPEND="dev-util/gperf >= 3.0.4
dev-libs/libwapcaplet >= 0.1.1-HEAD
net-libs/libdom >= 0"
#CHECKSUM_MD5=""
BUILD {
BUILD()
{
cd libsvgtiny-0-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd libsvgtiny-0-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions net-libs/hubbub/hubbub-0.2.0_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPENDS="dev-util/buildsystem >= 0.0.1"

BUILD {
BUILD()
{
cd hubbub-0.2.0-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd hubbub-0.2.0-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions net-libs/libdom/libdom-0.0.1_HEAD.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND="net-libs/hubbub >= 0.2.0-HEAD"

BUILD {
BUILD()
{
cd libdom-0.0.1-HEAD
make PREFIX=/boot/common
}

INSTALL {
INSTALL()
{
cd libdom-0.0.1-HEAD
make install PREFIX=/boot/common
}
Expand Down
6 changes: 4 additions & 2 deletions sys-fs/fatsort/fatsort-0.9.17.269.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""

BUILD {
BUILD()
{
cd fatsort-0.9.17.269
make CFLAGS="-include /boot/develop/headers/posix/stdint.h" LDFLAGS=-ltextencoding
}

INSTALL {
INSTALL()
{
cd fatsort-0.9.17.269
make install MANDIR=/boot/common/documentation/man/man1 SBINDIR=/boot/common/bin
}
Expand Down
6 changes: 4 additions & 2 deletions www-client/netsurf/netsurf-3.1git.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ DEPEND="media-libs/libmng > 1.0.10
dev-perl/HTML-Entities >= 3.70
"

BUILD {
BUILD()
{
cd netsurf-3.1-HEAD
make
}

INSTALL {
INSTALL()
{
cd netsurf-3.1-HEAD
make install
}
Expand Down

0 comments on commit 72ac1f8

Please sign in to comment.