mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 00:30:06 +02:00
71 lines
1.5 KiB
Bash
71 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."
|
|
HOMEPAGE="http://www.lcdproc.org"
|
|
COPYRIGHT="1998-2014 William W. Ferrell, Selene Scriven and many other contributors"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/lcdproc/lcdproc/releases/download/v$portVersion/lcdproc-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="d48a915496c96ff775b377d2222de3150ae5172bfb84a6ec9f9ceab962f97b83"
|
|
PATCHES="lcdproc-$portVersion.patchset"
|
|
GLOBAL_WRITABLE_FILES="
|
|
settings/LCDd.conf keep-old
|
|
settings/lcdexec.conf keep-old
|
|
settings/lcdproc.conf keep-old
|
|
settings/lcdvc.conf keep-old
|
|
"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
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
|
|
}
|