mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
* fix all syntactical problems in recipe files
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism in python"
|
||||
HOMEPAGE="http://www.coker.com.au/bonnie++/"
|
||||
SRC_URI="http://www.coker.com.au/bonnie++/bonnie++-1.03e.tgz"
|
||||
REVISION= "1"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="stable"
|
||||
DEPEND=""
|
||||
CHECKSUM_MD5="750aa5b5051263a99c6c195888c74968"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="Generic spell-checking dictionary library"
|
||||
HOMEPAGE="http://abisource.com/projects/enchant/"
|
||||
SRC_URI="http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz"
|
||||
REVISION= "2"
|
||||
REVISION="2"
|
||||
|
||||
STATUS_HAIKU="broken"
|
||||
|
||||
|
||||
@@ -19,10 +19,5 @@ INSTALL()
|
||||
MANDIR=${DESTDIR}`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
|
||||
}
|
||||
|
||||
TEST()
|
||||
{
|
||||
# none
|
||||
}
|
||||
|
||||
LICENSE="GNU GPL v2"
|
||||
COPYRIGHT="1996-2011 Steve Baker"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
HOMEPAGE= "http://redis.io/"
|
||||
HOMEPAGE="http://redis.io/"
|
||||
DESCRIPTION="Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets."
|
||||
SRC_URI= "http://redis.googlecode.com/files/redis-2.2.11.tar.gz"
|
||||
REVISION = "1"
|
||||
SRC_URI="http://redis.googlecode.com/files/redis-2.2.11.tar.gz"
|
||||
REVISION="1"
|
||||
DEPEND=""
|
||||
CHECKSUM_MD5= "5501c90ca02ae7ea93c34f067b3e0619"
|
||||
CHECKSUM_MD5="5501c90ca02ae7ea93c34f067b3e0619"
|
||||
STATUS_HAIKU="broken"
|
||||
MESSAGE="This port only builds with gcc4. Use 'setgcc gcc4' before building."
|
||||
BUILD()
|
||||
@@ -19,4 +19,4 @@ INSTALL()
|
||||
}
|
||||
|
||||
LICENSE="BSD (3-clause)"
|
||||
COPYRIGHT="2006-2010 Salvatore Sanfilippo"
|
||||
COPYRIGHT="2006-2010 Salvatore Sanfilippo"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
HOMEPAGE= "http://redis.io/"
|
||||
HOMEPAGE="http://redis.io/"
|
||||
DESCRIPTION="Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets."
|
||||
SRC_URI= "git://github.com/antirez/redis.git"
|
||||
REVISION = "1"
|
||||
SRC_URI="git://github.com/antirez/redis.git"
|
||||
REVISION="1"
|
||||
DEPEND=""
|
||||
STATUS_HAIKU="stable"
|
||||
# CHECKSUM_MD5= "5501c90ca02ae7ea93c34f067b3e0619"
|
||||
@@ -19,4 +19,4 @@ INSTALL()
|
||||
}
|
||||
|
||||
LICENSE="BSD (3-clause)"
|
||||
COPYRIGHT="2006-2010 Salvatore Sanfilippo"
|
||||
COPYRIGHT="2006-2010 Salvatore Sanfilippo"
|
||||
|
||||
@@ -43,7 +43,8 @@ INSTALL()
|
||||
make install
|
||||
}
|
||||
|
||||
TEST{
|
||||
TEST()
|
||||
{
|
||||
cd libiconv-1.12
|
||||
make check
|
||||
}
|
||||
|
||||
@@ -54,7 +54,8 @@ INSTALL()
|
||||
make install
|
||||
}
|
||||
|
||||
TEST{
|
||||
TEST()
|
||||
{
|
||||
make check
|
||||
}
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
DESCRIPTION="TinyXML is a simple, small, C++ XML parser that can be easily integrating into other programs"
|
||||
HOMEPAGE="http://www.grinninglizard.com/tinyxml/index.html"
|
||||
SRC_URI="http://en.sourceforge.jp/frs/g_redir.php?m=jaist&f=%2Ftinyxml%2Ftinyxml%2F2.6.2%2Ftinyxml_2_6_2.tar.gz"
|
||||
CHECKSUM_MD5="c1b864c96804a10526540c664ade67f0"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="untested"
|
||||
DEPEND=""
|
||||
|
||||
DESCRIPTION="TinyXML is a simple, small, C++ XML parser that can be easily integrating into other programs"
|
||||
HOMEPAGE="http://www.grinninglizard.com/tinyxml/index.html"
|
||||
SRC_URI="http://en.sourceforge.jp/frs/g_redir.php?m=jaist&f=%2Ftinyxml%2Ftinyxml%2F2.6.2%2Ftinyxml_2_6_2.tar.gz"
|
||||
CHECKSUM_MD5="c1b864c96804a10526540c664ade67f0"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="untested"
|
||||
DEPEND=""
|
||||
|
||||
BUILD()
|
||||
{
|
||||
cd tinyxml
|
||||
@@ -13,17 +13,17 @@ BUILD()
|
||||
wget http://libtinyxml.googlecode.com/svn/trunk/CMakeLists.txt
|
||||
cmake ./
|
||||
make
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
{
|
||||
cd tinyxml
|
||||
make install
|
||||
mkdir -p ${DESTDIR}`finddir B_COMMON_DEVELOP_DIRECTORY`/tinyxml
|
||||
cp ./*.cpp ${DESTDIR}`finddir B_COMMON_DEVELOP_DIRECTORY`/tinyxml
|
||||
mkdir -p ${DESTDIR}`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/doc/tinyxml
|
||||
cp ./docs/* ${DESTDIR}`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/doc/tinyxml
|
||||
}
|
||||
|
||||
LICENSE="Zlib"
|
||||
COPYRIGHT="2001-2010 Lee Thomason"
|
||||
}
|
||||
|
||||
LICENSE="Zlib"
|
||||
COPYRIGHT="2001-2010 Lee Thomason"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="Pure python SSH implementation"
|
||||
HOMEPAGE="http://www.lag.net/paramiko/"
|
||||
SRC_URI="http://pypi.python.org/packages/source/p/paramiko/paramiko-1.7.6.zip"
|
||||
REVISION= "1"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="stable"
|
||||
DEPEND="pycrypto >= 1.9"
|
||||
CHECKSUM_MD5="b1cfe0cd55772115f808a11c1baba8a0"
|
||||
@@ -21,4 +21,4 @@ INSTALL()
|
||||
|
||||
}
|
||||
LICENSE="GNU LGPL v2.1"
|
||||
COPYRIGHT="2003-2009 Robey Pointer"
|
||||
COPYRIGHT="2003-2009 Robey Pointer"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="Download, build, install, upgrade, and uninstall Python packages -- easily!"
|
||||
HOMEPAGE="http://pypi.python.org/pypi/pycrypto/2.3"
|
||||
SRC_URI="http://pypi.python.org/packages/source/p/pycrypto/pycrypto-2.3.tar.gz"
|
||||
REVISION= "1"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="unstable"
|
||||
DEPEND=""
|
||||
CHECKSUM_MD5="2b811cfbfc342d83ee614097effb8101"
|
||||
@@ -20,4 +20,4 @@ INSTALL()
|
||||
fi
|
||||
}
|
||||
LICENSE="pycrypto"
|
||||
COPYRIGHT="2010 Dwayne C. Litzenberger"
|
||||
COPYRIGHT="2010 Dwayne C. Litzenberger"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism in python"
|
||||
HOMEPAGE="http://pydispatcher.sourceforge.net/"
|
||||
SRC_URI="http://downloads.sourceforge.net/project/pydispatcher/pydispatcher/2.0.1/PyDispatcher-2.0.1.tar.gz"
|
||||
REVISION= "1"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="stable"
|
||||
DEPEND="dev-python/setuptools >= 0.6"
|
||||
CHECKSUM_MD5="8b1695ed6f5bdbda8fbcde82b62d505c"
|
||||
@@ -20,4 +20,4 @@ INSTALL()
|
||||
}
|
||||
|
||||
LICENSE="BSD (3-clause)"
|
||||
COPYRIGHT="2001-2006, Patrick K. O'Brien and Contributors"
|
||||
COPYRIGHT="2001-2006, Patrick K. O'Brien and Contributors"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="Download, build, install, upgrade, and uninstall Python packages -- easily!"
|
||||
HOMEPAGE="http://pypi.python.org/pypi/setuptools"
|
||||
SRC_URI="http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz"
|
||||
REVISION= "1"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="stable"
|
||||
DEPEND=""
|
||||
CHECKSUM_MD5="7df2a529a074f613b509fb44feefe74e"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="Native makefiles generator"
|
||||
HOMEPAGE="http://www.bakefile.org"
|
||||
SRC_URI="http://sourceforge.net/projects/bakefile/files/bakefile/0.2.8/bakefile-0.2.8.tar.gz/download"
|
||||
CHECKSUM_MD5 = "874da5c9035514366b7723bc7657c71c"
|
||||
CHECKSUM_MD5="874da5c9035514366b7723bc7657c71c"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="stable"
|
||||
DEPEND=""
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION="C++ port of the famous JUnit framework for unit testing"
|
||||
HOMEPAGE="http://cppunit.sourceforge.net/"
|
||||
SRC_URI="http://sourceforge.net/projects/cppunit/files/cppunit/1.12.1/cppunit-1.12.1.tar.gz/download"
|
||||
CHECKSUM_MD5 = "bd30e9cf5523cdfc019b94f5e1d7fd19"
|
||||
CHECKSUM_MD5="bd30e9cf5523cdfc019b94f5e1d7fd19"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="stable"
|
||||
DEPEND=""
|
||||
|
||||
@@ -21,10 +21,10 @@ INSTALL()
|
||||
fi
|
||||
}
|
||||
|
||||
shopt -s extglob
|
||||
TEST()
|
||||
{
|
||||
cd mercurial-2.2.2/tests
|
||||
shopt -s extglob
|
||||
sed -i 's,/usr/bin/env,/bin/env,' !(blacklists|bundles|gpg|svn)
|
||||
python run-tests.py
|
||||
}
|
||||
|
||||
@@ -21,10 +21,10 @@ INSTALL()
|
||||
fi
|
||||
}
|
||||
|
||||
shopt -s extglob
|
||||
TEST()
|
||||
{
|
||||
cd mercurial-2.2.3/tests
|
||||
shopt -s extglob
|
||||
sed -i 's,/usr/bin/env,/bin/env,' !(blacklists|bundles|gpg|svn)
|
||||
python run-tests.py
|
||||
}
|
||||
|
||||
@@ -21,10 +21,10 @@ INSTALL()
|
||||
fi
|
||||
}
|
||||
|
||||
shopt -s extglob
|
||||
TEST()
|
||||
{
|
||||
cd mercurial-2.3/tests
|
||||
shopt -s extglob
|
||||
sed -i 's,/usr/bin/env,/bin/env,' !(blacklists|bundles|gpg|svn)
|
||||
python run-tests.py
|
||||
}
|
||||
|
||||
@@ -21,10 +21,10 @@ INSTALL()
|
||||
fi
|
||||
}
|
||||
|
||||
shopt -s extglob
|
||||
TEST()
|
||||
{
|
||||
cd mercurial-2.4/tests
|
||||
shopt -s extglob
|
||||
sed -i 's,/usr/bin/env,/bin/env,' !(blacklists|bundles|gpg|svn)
|
||||
python run-tests.py
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ SRC_URI="http://jonas.nitro.dk/tig/releases/tig-0.16.tar.gz"
|
||||
CHECKSUM_MD5="684572d93033d6cbfc5ee71cffe02935"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="untested"
|
||||
DEPEND="sys-libs/ncurses >= 5.7""
|
||||
DEPEND="sys-libs/ncurses >= 5.7"
|
||||
BUILD()
|
||||
{
|
||||
cd tig-0.16
|
||||
@@ -20,4 +20,4 @@ INSTALL()
|
||||
make install
|
||||
}
|
||||
LICENSE="GNU GPL v2"
|
||||
COPYRIGHT="2006-2010 Jonas Fonseca"
|
||||
COPYRIGHT="2006-2010 Jonas Fonseca"
|
||||
|
||||
@@ -7,12 +7,12 @@ DEPEND=""
|
||||
|
||||
BUILD()
|
||||
{
|
||||
|
||||
true
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
|
||||
true
|
||||
}
|
||||
|
||||
#COPYRIGHT=""
|
||||
|
||||
@@ -14,8 +14,7 @@ INSTALL()
|
||||
{
|
||||
FONTDIR=${DESTDIR}/`finddir B_COMMON_FONTS_DIRECTORY`/
|
||||
mkdir -p ${FONTDIR}
|
||||
cp -r *.ttf()
|
||||
{FONTDIR}
|
||||
cp -r *.ttf ${FONTDIR}
|
||||
}
|
||||
|
||||
LICENSE="GNU GPL v2"
|
||||
|
||||
@@ -27,4 +27,4 @@ INSTALL()
|
||||
make install
|
||||
}
|
||||
LICENSE="Public Domain"
|
||||
COPYRIGHT="
|
||||
#COPYRIGHT=""
|
||||
|
||||
@@ -26,4 +26,4 @@ INSTALL()
|
||||
}
|
||||
|
||||
LICENSE="GNU GPL v3"
|
||||
COPYRIGHT="1996-2000, 2007 Brian Gough, Gerard Jungman, Mark Galassi, James Theiler, Reid Priedhorsky, Jim Davies and others.
|
||||
COPYRIGHT="1996-2000, 2007 Brian Gough, Gerard Jungman, Mark Galassi, James Theiler, Reid Priedhorsky, Jim Davies and others."
|
||||
|
||||
Reference in New Issue
Block a user