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,29 +1,38 @@
DESCRIPTION="This program was inspired by the 'TaveDesktop' program by the Tave Software Group. I think that 'TaveDesktop' was a good idea, but I wanted to be able to choose my own colors, since the 'TaveDesktop' colors looks bad on an 8bpp display.
This program should be self-explanatory. You'll find a small Popup menu when clicking the small screen at the top-right corner of the window."
SUMMARY="Automatic desktop color changer"
HOMEPAGE="https://github.com/HaikuArchives/NightAndDay"
SRC_URI="git+git://github.com/HaikuArchives/NightAndDay.git"
REVISION="1"
DESCRIPTION="
This program was inspired by the 'TaveDesktop' program by the Tave
Software Group. I think that 'TaveDesktop' was a good idea, but I
wanted to be able to choose my own colors, since the 'TaveDesktop'
colors looks bad on an 8bpp display.
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
This program should be self-explanatory. You'll find a small Popup
menu when clicking the small screen at the top-right corner of the
window."
SUMMARY="Automatic desktop color changer"
COPYRIGHT="1998-1999 Jean-Baptiste M. Queru"
LICENSE="GNU GPL v2"
HOMEPAGE="https://github.com/HaikuArchives/NightAndDay"
SRC_URI="git+git://github.com/HaikuArchives/NightAndDay.git#3bcc1a5a39"
REVISION="2"
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
PROVIDES="
nightanddays = $portVersion
app:nightanddays = $portVersion"
nightanddays = $portVersion
app:nightanddays = $portVersion
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:ld"
cmd:gcc
cmd:ld
"
REQUIRES="
haiku >= $haikuVersion"
COPYRIGHT="1998-1999 Jean-Baptiste M. Queru"
LICENSE="GNU GPL v2"
SOURCE_DIR="src"
haiku >= $haikuVersion
"
BUILD()
{
@@ -33,9 +42,9 @@ BUILD()
INSTALL()
{
NDDir=$appsDir/NightAndDay
mkdir -p $NDDir
cp src/NightAndDay $NDDir/NightAndDay
cp ReadMe $NDDir/ReadMe
addAppDeskbarSymlink $NDDir/NightAndDay
mkdir -p $appsDir
cp src/NightAndDay $appsDir
mkdir -p $docDir
cp ReadMe $docDir
addAppDeskbarSymlink $appsDir/NightAndDay
}