Fixed bep and patch files for dumb to allow for building of the .so libs as well as the .a ones.

This commit is contained in:
Scott McCreary
2010-09-07 23:47:46 +00:00
parent 9cda145a19
commit 46688eac4c
2 changed files with 43 additions and 7 deletions

View File

@@ -1,26 +1,32 @@
DESCRIPTION="dumb - Dynamic Universal Music Bibliotheque" DESCRIPTION="dumb - Dynamic Universal Music Bibliotheque"
HOMEPAGE="http://dumb.sourceforge.net/" HOMEPAGE="http://dumb.sourceforge.net/"
SRC_URI="http://downloads.sourceforge.net/project/dumb/dumb/0.9.3/dumb-0.9.3.tar.gz" SRC_URI="http://downloads.sourceforge.net/project/dumb/dumb/0.9.3/dumb-0.9.3.tar.gz"
# dumb-0.9.3.zip was created by extracting dumb-0.9.3.tar.gz and dumb-0.9.3-autotools.tar.gz and then zipping up the combined directory.
REVISION="1" REVISION="1"
STATUS_HAIKU="stable" STATUS_HAIKU="stable"
DEPEND="media-libs/allegro >= 4.4.1.1" DEPEND="media-libs/allegro >= 4.4.1.1"
CHECKSUM_MD5="f48da5b990aa8aa822d3b6a951baf5c2" CHECKSUM_MD5="f48da5b990aa8aa822d3b6a951baf5c2"
BUILD { BUILD {
if [ -n dumb-0.9.3-autotools.tar.gz ]; then
# get the autotools to help in building dumb
wget http://prdownloads.sourceforge.net/dumb/dumb-0.9.3-autotools.tar.gz?download
fi
gunzip dumb-0.9.3-autotools.tar.gz
tar -xf dumb-0.9.3-autotools.tar
cd dumb-0.9.3 cd dumb-0.9.3
mkdir -p m4 mkdir -p m4
haikuporter -b -y allegro-4.4.1.1 haikuporter -y -b allegro-4.4.1.1
cp $(haikuporter -t)/media-libs/allegro/work/allegro-4.4.1.1/misc/allegro.m4 m4 cp $(haikuporter -t)/media-libs/allegro/work/allegro-4.4.1.1/misc/allegro.m4 m4
# echo 'AC_CONFIG_MACRO_DIR([m4])' >> configure.in echo 'AC_CONFIG_MACRO_DIR([m4])' >> configure.in
libtoolize --force --copy --install libtoolize --force --copy --install
# aclocal -I m4 --warnings=none aclocal -I m4 --warnings=none
# autoconf autoconf
make PREFIX=`finddir B_COMMON_DIRECTORY` ./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
} }
INSTALL { INSTALL {
cd dumb-0.9.3 cd dumb-0.9.3
make install PREFIX=`finddir B_COMMON_DIRECTORY` DESTDIR=${DESTDIR} make install DESTDIR=${DESTDIR}
} }
LICENSE="DUMB-0.9.3" LICENSE="DUMB-0.9.3"
COPYRIGHT="2001-2005 Ben Davis, Robert J Ohannessian and Julien Cugniere" COPYRIGHT="2001-2005 Ben Davis, Robert J Ohannessian and Julien Cugniere"

View File

@@ -57,3 +57,33 @@ diff -urN dumb-0.9.3/make/unix.inc dumb-0.9.3-haiku/make/unix.inc
LINK_ALLEGRO := `allegro-config --libs` LINK_ALLEGRO := `allegro-config --libs`
# PREFIX is set by config.sh. # PREFIX is set by config.sh.
diff -urN dumb-0.9.3/make/config.sh dumb-0.9.3-haiku/make/config.sh
--- dumb-0.9.3/make/config.sh 2005-08-08 00:18:40.012320768 +0000
+++ dumb-0.9.3-haiku/make/config.sh 2010-09-07 23:23:38.653787136 +0000
@@ -14,24 +14,14 @@
echo 'ALL_TARGETS := core core-examples core-headers' >> make/config.tmp
-if make/dumbask 'Would you like support for Allegro (Y/N)? ' YN; then
- echo 'ALL_TARGETS += allegro allegro-examples allegro-headers' >> make/config.tmp
-fi
+echo 'ALL_TARGETS += allegro allegro-examples allegro-headers' >> make/config.tmp
-
-if [ ! -z $DEFAULT_PREFIX ]; then
-echo "Please specify an installation prefix (default $DEFAULT_PREFIX)."
-echo -n '> '
-read PREFIX
+PREFIX := `/boot/common`
if [ -z $PREFIX ]; then PREFIX=$DEFAULT_PREFIX; fi
echo "PREFIX := `echo "$PREFIX" | \
sed -e 's/\${\([A-Za-z_][A-Za-z0-9_]*\)}/$(\1)/g' \
-e 's/\$\([A-Za-z_][A-Za-z0-9_]*\)/$(\1)/g'`" >> make/config.tmp
-fi
mv -f make/config.tmp make/config.txt
echo 'Configuration complete.'
-echo "Run 'make config' to change it in the future."
-echo -n 'Press Enter to continue ... '
-read dummy