Overhaul the haiku-apps directory

* Fixed PROVIDES/*REQUIRES entries
* Added vcs hashes to the ports needing it in the SRC_URI
* Made single executable apps install to the top level $appsDir
* Added patches for gcc4 versions of most apps
* Added patches for apps that couldn't build on any arch
   ( even though they were marked as working :( )
* Other misc fixes that I've forgotten already because I'm sick of
  looking at this directory
This commit is contained in:
Chris Roberts
2013-12-02 20:48:05 -07:00
parent 664e3c050d
commit 8a30e59744
38 changed files with 1381 additions and 643 deletions

View File

@@ -1,35 +1,38 @@
SUMMARY="A GUI frontend to the command-line downloader wget"
DESCRIPTION="BeGet is a easy-to-use download manager for the popular command line tool wget.
BeGet can also accept more than one link at the same time. BeGet saves your downloaded files to /home/Downloads
DESCRIPTION="
BeGet is a easy-to-use download manager for the popular command line
tool wget. BeGet can also accept more than one link at the same time.
BeGet saves your downloaded files to /home/Downloads
"
HOMEPAGE="http://github.com/HaikuArchives/BeGet"
SRC_URI="git://github.com/HaikuArchives/BeGet"
REVISION="2"
SRC_URI="git://github.com/HaikuArchives/BeGet#fe8db7ccb6"
REVISION="3"
LICENSE="GNU GPL v2"
COPYRIGHT="1999-2001 Atsushi Takamatsu"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86 x86_64"
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 !x86 !x86_64"
PROVIDES="
beget = $portVersion
app:beget = $portVersion
"
"
REQUIRES="
haiku$secondaryArchSuffix >= $haikuVersion
cmd:wget$secondaryArchSuffix
"
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel >= $haikuVersion
"
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel >= $haikuVersion
cmd:cmake
cmd:make
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
"
SOURCE_DIR="BeGet-master"
"
BUILD()
{
@@ -40,7 +43,6 @@ BUILD()
INSTALL()
{
mkdir -p $appsDir
cp BeGet $appsDir
cp BeGet $appsDir
addAppDeskbarSymlink $appsDir/BeGet
}