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,20 +1,28 @@
DESCRIPTION="FtpPositive is a simple graphical FTP client."
SUMMARY="A simple graphical FTP client"
HOMEPAGE="https://github.com/HaikuArchives/FtpPositive"
SRC_URI="git+https://github.com/HaikuArchives/FtpPositive"
SRC_URI="git+https://github.com/HaikuArchives/FtpPositive#442f47a22f"
COPYRIGHT="2007 momoziro"
LICENSE="FtpPositive"
REVISION="1"
REVISION="2"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
PROVIDES="
ftppositive = $portVersion
app:ftppositive = $portVersion"
app:ftppositive = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:jam"
@@ -22,14 +30,14 @@ BUILD()
{
cd src
jam
#too lazy to fix the jamfile
mimeset -f FtpPositive
}
INSTALL()
{
cd src
mkdir -p $appsDir/FtpPositive
cp -a FtpPositive $appsDir/FtpPositive
addAppDeskbarSymlink $appsDir/FtpPositive/FtpPositive
mkdir -p $appsDir
cp -a src/FtpPositive $appsDir
addAppDeskbarSymlink $appsDir/FtpPositive
}