moved yab to dev-lang added haiku-apps/yab_ide

This commit is contained in:
Jim
2014-03-23 10:37:50 -07:00
parent 5e3de2f734
commit 388a71e266
3 changed files with 119 additions and 51 deletions

View File

@@ -1,19 +1,20 @@
SUMMARY="yab is an extended version of yabsic, a BASIC programming language"
DESCRIPTION="
yab is an extended version of yabasic, a BASIC programming language, with \
special commands designed for BeOS, Haiku and Zeta.
special commands designed for Haiku.
"
HOMEPAGE="http://sourceforge.net/projects/yab-interpreter"
SRC_URI="git+https://github.com/HaikuArchives/Yab.git"
SRC_URI="git+https://github.com/bbjimmy/Yab.git"
REVISION="2"
#CHECKSUM_MD5="2b465895d9eb2e8383f035dd67b88a20"
LICENSE="Artistic
GNU GPL v2"
COPYRIGHT="1995-2006 Marc-Oliver Ihm (yabasic)
2006-2009 Jan Bungeroth (yab improvements)"
ARCHITECTURES="!x86_gcc2 !x86 !x86_64"
SECONDARY_ARCHITECTURE="!x86_gcc2 !x86"
LICENSE="Artistic"
COPYRIGHT="1995-2006 Marc-Oliver Ihm (yabasic)
2006-2009 Jan Bungeroth (yab improvements)
2013 Jim Saxton ( yab improvements)"
ARCHITECTURES="x86_gcc2 x86 !x86_64"
SECONDARY_ARCHITECTURE="!x86_64"
#SOURCE_DIR="yab-$portVersion"
@@ -24,7 +25,7 @@ PROVIDES="
REQUIRES="
haiku$secondaryArchSuffix >= $haikuVersion
lib:ncurses$secondaryArchSuffix
ncurses >= 5.9
"
BUILD_REQUIRES="
@@ -43,17 +44,33 @@ BUILD_PREREQUIRES="
"
BUILD()
{
cd src
{
mkdir tmp
cp -r src/* tmp
cd tmp
make $jobArgs BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
unzip -o App_YAB.zip
copyattr App_YAB yab
}
INSTALL()
{
$YABDIR=$appsDir/yab
mkdir -p ${YABDIR}
cp -a ${YABDIR}apps/yab
cp -a Documentation ${YABDIR}
cp -a Programs ${YABDIR}
cp -a yab-IDE ${YABDIR}
{
mkdir -p $binDir
cp tmp/yab $binDir/
mkdir -p $documentationDir
cp -r Documentation/ $documentationDir/yab-1.7.02
mkdir -p $appsDir/yab-IDE
cp -r src $appsDir/yab-IDE/src
cp -r Documentation $appsDir/yab-IDE/Documentation
rmdir --ignore tmp
}

View File

@@ -1,32 +0,0 @@
SUMMARY="yab is an extended version of yabsic, a BASIC programming language"
DESCRIPTION="
yab is an extended version of yabasic, a BASIC programming language, with \
special commands designed for BeOS, Haiku and Zeta.
"
HOMEPAGE="http://sourceforge.net/projects/yab-interpreter"
SRC_URI="http://ports-space.haiku-files.org/haiku-apps/source/yab-1.6.zip"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="071e8653265a60fea96cceab46f67e5b"
BUILD()
{
cd yab-1.6/src
make clean
make
}
INSTALL()
{
cd yab-1.6
mkdir -p ${DESTDIR}/boot/apps/yab
cp -a src/yab ${DESTDIR}/boot/apps/yab
cp -a Documentation ${DESTDIR}/boot/apps/yab
cp -a Programs ${DESTDIR}/boot/apps/yab
cp -a yab-IDE ${DESTDIR}/boot/apps/yab
}
LICENSE="Artistic
GNU GPL v2"
COPYRIGHT="1995-2006 Marc-Oliver Ihm (yabasic)
2006-2009 Jan Bungeroth (yab improvements)"

View File

@@ -0,0 +1,83 @@
SUMMARY="Yab ide is an integrated development environment for yab. "
DESCRIPTION="
Yab allows fast prototyping with simple and clean code. yab contains a large number of BeAPI specific commands for GUI creation and much, much more.
"
HOMEPAGE="http://sourceforge.net/projects/yab-interpreter"
SRC_URI="git+https://github.com/bbjimmy/Yab.git"
REVISION="2"
LICENSE="Artistic"
COPYRIGHT="1995-2006 Marc-Oliver Ihm (yabasic)
2006-2009 Jan Bungeroth (yab improvements)
2013 Jim Saxton ( yab improvements)"
ARCHITECTURES="x86_gcc2 x86 !x86_64"
SECONDARY_ARCHITECTURE="!x86_64"
#SOURCE_DIR="yab_ide-$portVersion"
PROVIDES="
yab_ide$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix >= $haikuVersion
ncurses >= 5.9
yab >= 1.7.02
devel:libncurses$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel >= $haikuVersion
devel:libncurses$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:bison
cmd:flex
cmd:gcc$secondaryArchSuffix
cmd:make
cmd:mkdepend
cmd:perl
makefile_engine
"
BUILD()
{
cd src
make $jobArgs BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
unzip -o App_YAB.zip
copyattr App_YAB yab
}
INSTALL()
{
mkdir -p $binDir
mkdir -p tmp
mkdir -p tmp/buildfactory
cp -r src/* tmp/buildfactory
cp -r yab-IDE/BuildFactory/* tmp/buildfactory/
unzip -o tmp/buildfactory/parts/yabstuff.zip -d tmp/buildfactory/parts
cp yab-IDE/src/yab-IDE.yab tmp/buildfactory/
cd tmp/buildfactory
BuildFactory.yab yab-IDE yab-IDE.yab application/x-vnd.yab-IDE
cd ..
cd ..
mkdir -p $appsDir
cp -r yab-IDE/ $appsDir/
cp tmp/buildfactory/yab-IDE $appsDir/yab-IDE/
cp yab-IDE/src/yab-IDE.yab $appsDir/yab-IDE/src/
}