Initial .bep files for sdl-sound and cdrtools

This commit is contained in:
Scott McCreary
2009-10-29 22:27:20 +00:00
parent 62a6c620ab
commit 9c194a6a8c
3 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
DESCRIPTION="cdrtools - A set of tools for CD/DVD reading and recording, including cdrecord"
HOMEPAGE="http://cdrecord.berlios.de"
SRC_URI="ftp://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-2.01.01a66.tar.gz"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
cd cdrtools-2.01.01
./configure --prefix=/boot/common
make
}
INSTALL {
cd cdrtools-2.01.01
make install
}

View File

@@ -0,0 +1,33 @@
diff -urN cdrtools-2.01.01/DEFAULTS/Defaults.haiku cdrtools-2.01.01-haiku/DEFAULTS/Defaults.haiku
--- cdrtools-2.01.01/DEFAULTS/Defaults.haiku 2009-07-25 15:36:53.000000000 +0000
+++ cdrtools-2.01.01-haiku/DEFAULTS/Defaults.haiku 2009-10-12 04:53:52.000000000 +0000
@@ -1,7 +1,7 @@
-#ident "@(#)Defaults.haiku 1.3 09/07/25 "
+#ident "@(#)Defaults.beos 1.5 09/06/04 "
###########################################################################
#
-# global definitions for Haiku Systems
+# global definitions for BeOS Systems
#
###########################################################################
#
@@ -29,16 +29,16 @@
CWARNOPTS=
DEFINCDIRS= $(SRCROOT)/include
-LDPATH= -L/opt/schily/lib
+LDPATH= -L$(shell finddir B_APPS_DIRECTORY)/cdrtools/lib
#RUNPATH= -R$(INS_BASE)/lib -R/opt/schily/lib -R$(OLIBSDIR)
-RUNPATH= -R$(INS_BASE)/lib -R/opt/schily/lib
+RUNPATH= -R$(INS_BASE)/lib
###########################################################################
#
# Installation config stuff
#
###########################################################################
-INS_BASE= /boot/opt/schily
+INS_BASE= $(shell finddir B_APPS_DIRECTORY)/cdrtools
INS_KBASE= /
INS_RBASE= /
#

View File

@@ -0,0 +1,21 @@
DESCRIPTION="sdl-sound"
HOMEPAGE="http://www.icculus.org/SDL_sound"
# We're using mercurial, so need to fake out the download for now
SRC_URI="http://www.haiku-ports.de/packages/sources/expat-2.0.1.tar.gz"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="libogg >= 1.1.4"
BUILD {
rm -r SDL_sound
hg clone http://hg.icculus.org/icculus/SDL_sound
cd SDL_sound
libtoolize --copy --force --install
./bootstrap
./configure --prefix=/boot/common
make
}
INSTALL {
cd SDL_sound
make install
}