summaryrefslogtreecommitdiff
path: root/lcdproc/lcdproc_0.4.5.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
committerChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
commita780643c4b6aa11e1a36965a69df7116477c7b4c (patch)
tree17e81e77bde19931facf9b30fa5b5981df796071 /lcdproc/lcdproc_0.4.5.oe
parent88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff)
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb 2004/12/07 04:58:25-06:00 ti.com!kergoth More updates per the core rename. 2004/12/07 04:46:51-06:00 ti.com!kergoth Update soundtracker per the core rename. 2004/12/07 04:44:14-06:00 ti.com!kergoth Merge 2004/12/07 04:42:38-06:00 ti.com!kergoth Updates per the recent rename of the oe core from 'oe' to 'bitbake'. BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'lcdproc/lcdproc_0.4.5.oe')
-rw-r--r--lcdproc/lcdproc_0.4.5.oe51
1 files changed, 0 insertions, 51 deletions
diff --git a/lcdproc/lcdproc_0.4.5.oe b/lcdproc/lcdproc_0.4.5.oe
deleted file mode 100644
index d8db0525f9..0000000000
--- a/lcdproc/lcdproc_0.4.5.oe
+++ /dev/null
@@ -1,51 +0,0 @@
-SECTION = "base"
-DESCRIPTION = "LCDproc is a client/Server suite to drive all kinds of LCD (-like) devices. The client \
-shipped with this package can be used to acquire various kinds of system stats."
-HOMEPAGE = "http://lcdproc.org"
-PRIORITY = "optional"
-MAINTAINER = "Rene Wagner <reenoo@gmx.de>"
-DEPENDS = "${@((oe.data.getVar('LCDPROC_DRIVERS',d) or 'curses,text').find('curses') != -1) and 'ncurses' or ''}"
-
-SRC_URI = "${SOURCEFORGE_MIRROR}/lcdproc/lcdproc-${PV}.tar.gz"
-
-inherit autotools
-
-EXTRA_OECONF = "${@'--enable-drivers=' + (oe.data.getVar('LCDPROC_DRIVERS',d) or 'curses,text')}"
-
-do_install () {
- # binaries
- install -D -m 0755 server/LCDd ${D}/${sbindir}/LCDd
- install -D -m 0755 clients/lcdproc/lcdproc ${D}/${bindir}/lcdproc
-
- # init scripts
- install -D -m 0755 scripts/init-LCDd.debian ${D}/${sysconfdir}/init.d/lcdd
- # prevent lcdproc from starting if no SCREENS are set.
- # will be fixed in next upstream release
- cat scripts/init-lcdproc.debian | sed -e 's/C X//' | sed -e 's/case/[ -n $SCREENS ] || exit 0
-
-case/' > ${D}/${sysconfdir}/init.d/lcdproc
- chmod 0755 ${D}/${sysconfdir}/init.d/lcdproc
-
- # configuration files
- install -D -m 0644 LCDd.conf ${D}/${sysconfdir}/LCDd.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
- chmod 0644 ${D}/${sysconfdir}/lcdproc.conf
-}
-
-pkg_postinst () {
- if test -n "${D}"; then
- D="-r $D"
- fi
- update-rc.d $D lcdd defaults 70 21
- update-rc.d $D lcdproc defaults 71 20
-}
-
-pkg_prerm () {
- if test -n "${D}"; then
- D="-r $D"
- fi
- update-rc.d $D lcdproc remove
- update-rc.d $D lcdd remove
-}