diff options
author | ccsmart <ccsmart@smartpal.de> | 2007-01-19 18:29:07 +0000 |
---|---|---|
committer | ccsmart <ccsmart@smartpal.de> | 2007-01-19 18:29:07 +0000 |
commit | 09ac0cd7234040cdedf054aee5c831f1c9a18293 (patch) | |
tree | d7644c69a0e678e812c5c0ff5b5b89f66aab59a0 /packages/lcdproc | |
parent | 4f8f0029cf9b49d9f7aef01ec66a2926378cda93 (diff) |
lcdproc: Add lcdvc.
Diffstat (limited to 'packages/lcdproc')
-rw-r--r-- | packages/lcdproc/lcdproc_0.5.1.bb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/lcdproc/lcdproc_0.5.1.bb b/packages/lcdproc/lcdproc_0.5.1.bb index e769e0053f..aa1b26e544 100644 --- a/packages/lcdproc/lcdproc_0.5.1.bb +++ b/packages/lcdproc/lcdproc_0.5.1.bb @@ -4,7 +4,7 @@ HOMEPAGE = "http://lcdproc.org" LICENSE = "GPL" PRIORITY = "optional" SECTION = "utils" -PR="r1" +PR="r2" DEPENDS = "libusb ncurses libg15 g15daemon libg15render" RRECOMMENDS_lcdproc = "lcdd" @@ -13,7 +13,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/lcdproc/${P}.tar.gz" inherit autotools update-rc.d -PACKAGES =+ "lcdd lcdd-driver-cfontz lcdd-driver-bayrad lcdd-driver-hd44780nousb \ +PACKAGES =+ "lcdd lcdvc lcdd-driver-cfontz lcdd-driver-bayrad lcdd-driver-hd44780nousb \ lcdd-driver-hd44780 lcdd-driver-mtxorb lcdd-driver-serialvfd \ lcdd-driver-curses lcdd-driver-text \ lcdd-driver-sed lcdd-driver-cwlnx lcdd-driver-glk lcdd-driver-icp-a106 \ @@ -24,6 +24,7 @@ PACKAGES =+ "lcdd lcdd-driver-cfontz lcdd-driver-bayrad lcdd-driver-hd44780nousb CONFFILES_lcdd = "${sysconfdir}/LCDd.conf" CONFFILES_lcdproc = "${sysconfdir}/lcdproc.conf" +CONFFILES_lcdvc = "${sysconfdir}/lcdvc.conf" FILES_lcdd = "${CONFFILES_lcdd} \ ${sbindir}/LCDd \ @@ -33,6 +34,9 @@ FILES_lcdproc = "${CONFFILES_lcdproc} \ ${bindir}/lcdproc \ ${sysconfdir}/init.d/lcdproc" +FILES_lcdvc = "${CONFFILES_lcdvc} \ + ${sbindir}/lcdvc" + # Driver packages FILES_lcdd-driver-cfontz = "${libdir}/lcdproc/CFontz*.so" @@ -91,6 +95,7 @@ do_install () { # binaries install -D -m 0755 server/LCDd ${D}${sbindir}/LCDd install -D -m 0755 clients/lcdproc/lcdproc ${D}${bindir}/lcdproc + install -D -m 0755 clients/lcdvc/lcdvc ${D}${sbindir}/lcdvc # init scripts install -d ${D}${sysconfdir}/init.d @@ -104,6 +109,7 @@ do_install () { # configuration files install -D -m 0644 LCDd.conf ${D}${sysconfdir}/LCDd.conf + install -D -m 0644 clients/lcdvc/lcdvc.conf ${D}${sysconfdir}/lcdvc.conf # don't start lcdproc by default # will be fixed in next upstream release cat scripts/lcdproc.conf | sed -e 's/C X//' > ${D}${sysconfdir}/lcdproc.conf |