mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 13:08:53 +02:00
74 lines
1.5 KiB
Bash
74 lines
1.5 KiB
Bash
SUMMARY="Client/server app to drive LCD displays"
|
|
DESCRIPTION="LCDproc controls various LCD and VFD devices in a standardized way, and ships with a \
|
|
client to display various system statistics. Supports multiple platforms (Linux, *BSD, Solaris). \
|
|
Client/server model allows multiple clients to use one display."
|
|
REVISION="1"
|
|
HOMEPAGE="http://www.lcdproc.org"
|
|
ARCHITECTURES="x86_gcc2"
|
|
SOURCE_URI="http://downloads.sourceforge.net/project/lcdproc/lcdproc/$portVersion/lcdproc-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="843007d377adc856529ed0c7c42c9a7563043f06b1b73add0372bba3a3029804"
|
|
PATCHES="lcdproc-$portVersion.patchset"
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="1998-2014 William W. Ferrell, Selene Scriven and many other contributors"
|
|
|
|
PROVIDES="
|
|
lcdproc = $portVersion
|
|
cmd:lcdd
|
|
cmd:fortune.pl
|
|
cmd:iosock.pl
|
|
cmd:lcdexec
|
|
cmd:lcdident.pl
|
|
cmd:lcdmetar.pl
|
|
cmd:lcdproc
|
|
cmd:lcdvc
|
|
cmd:tail.pl
|
|
cmd:x11amp.pl
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
lib:libncurses
|
|
lib:libpng
|
|
lib:libusb_1.0
|
|
lib:libusb
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libncurses
|
|
devel:libpng
|
|
devel:libusb_1.0
|
|
devel:libusb
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:awk
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:pkg_config
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
aclocal
|
|
automake
|
|
runConfigure ./configure CFLAGS="-DBSD_SOURCE" --enable-drivers=picolcd LDFLAGS="-lbsd" --enable-libusb --enable-libusb-1.0
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
|
|
GLOBAL_WRITABLE_FILES="
|
|
settings/LCDd.conf keep-old
|
|
settings/lcdexec.conf keep-old
|
|
settings/lcdproc.conf keep-old
|
|
settings/lcdvc.conf keep-old
|
|
"
|