mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
* 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
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
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"
|
|
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
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:ld
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
g++ -o NightAndDay nd.cpp -fno-pic -fomit-frame-pointer -ffast-math -Wall -W -Wno-multichar -Werror -D PI=3.141592 -lbe
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp src/NightAndDay $appsDir
|
|
mkdir -p $docDir
|
|
cp ReadMe $docDir
|
|
addAppDeskbarSymlink $appsDir/NightAndDay
|
|
}
|