lcdproc: add cvs (HEAD) packages (fixed and floating SRCDATE) based on .bb courtesy...
authorRene Wagner <rw@handhelds.org>
Wed, 25 Jan 2006 20:03:34 +0000 (20:03 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Wed, 25 Jan 2006 20:03:34 +0000 (20:03 +0000)
packages/lcdproc/lcdproc_0.4.99+cvs20060123.bb [new file with mode: 0644]
packages/lcdproc/lcdproc_cvs.bb [new file with mode: 0644]

diff --git a/packages/lcdproc/lcdproc_0.4.99+cvs20060123.bb b/packages/lcdproc/lcdproc_0.4.99+cvs20060123.bb
new file mode 100644 (file)
index 0000000..5d77ca2
--- /dev/null
@@ -0,0 +1,68 @@
+DESCRIPTION = "LCDproc is a client/Server suite to drive all kinds of LCD (-like) devices."
+DESCRIPTION_append_lcdproc = " The client shipped with this package can be used to acquire various kinds of system stats."
+DESCRIPTION_append_lcdd = " This package contains the LCDd server."
+HOMEPAGE = "http://lcdproc.org"
+LICENSE = "GPL"
+PRIORITY = "optional"
+MAINTAINER = "Rene Wagner <rw@handhelds.org>"
+SECTION = "utils"
+
+DEPENDS = "${@((bb.data.getVar('LCDPROC_DRIVERS',d) or 'curses,text').find('curses') != -1) and 'ncurses' or ''}"
+RRECOMMENDS_lcdproc = "lcdd"
+
+SRCDATE = "${@bb.data.getVar('FILE', d, 1).split('cvs')[-1].split('.')[0]}"
+SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/lcdproc;module=lcdproc"
+S = "${WORKDIR}/lcdproc"
+
+inherit autotools update-rc.d
+
+PACKAGES =+ "lcdd"
+
+CONFFILES_lcdd = "${sysconfdir}/LCDd.conf"
+CONFFILES_lcdproc = "${sysconfdir}/lcdproc.conf"
+
+FILES_lcdd = "${CONFFILES_lcdd} \
+       ${sbindir}/LCDd \
+       ${sysconfdir}/init.d/lcdd \
+       ${libdir}/lcdproc/"
+FILES_lcdproc = "${CONFFILES_lcdproc} \
+       ${bindir}/lcdproc \
+       ${sysconfdir}/init.d/lcdproc"
+
+INITSCRIPT_PACKAGES = "lcdd lcdproc"
+INITSCRIPT_NAME_lcdd = "lcdd"
+INITSCRIPT_NAME_lcdproc = "lcdproc"
+INITSCRIPT_PARAMS_lcdd = "defaults 70 21"
+INITSCRIPT_PARAMS_lcdproc = "defaults 71 20"
+
+EXTRA_OECONF = "${@'--enable-drivers=' + (bb.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 ${D}${sysconfdir}/init.d
+       # so far, not fixed :-( and now even uglier :-((
+       cat scripts/init-LCDd.debian | sed -e s'/--oknodo//' -e 's/ -s -f / -s 1 -f 1 /' -e 's/force-reload/force-restart/' -e 's/sleep 1/sleep 4/' > ${D}${sysconfdir}/init.d/lcdd
+       chmod 0755 ${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\n\ncase/' | sed -e s'/--oknodo//' > ${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
+
+       # driver library files
+       install -d ${D}${libdir}/lcdproc
+       for i in server/drivers/*.so; do
+               install -m 0644 $i ${D}${libdir}/lcdproc/
+       done
+}
+
diff --git a/packages/lcdproc/lcdproc_cvs.bb b/packages/lcdproc/lcdproc_cvs.bb
new file mode 100644 (file)
index 0000000..e73dd8d
--- /dev/null
@@ -0,0 +1,70 @@
+DESCRIPTION = "LCDproc is a client/Server suite to drive all kinds of LCD (-like) devices."
+DESCRIPTION_append_lcdproc = " The client shipped with this package can be used to acquire various kinds of system stats."
+DESCRIPTION_append_lcdd = " This package contains the LCDd server."
+HOMEPAGE = "http://lcdproc.org"
+LICENSE = "GPL"
+PRIORITY = "optional"
+MAINTAINER = "Rene Wagner <rw@handhelds.org>"
+SECTION = "utils"
+PV = "0.4.99+cvs${SRCDATE}"
+
+DEFAULT_PREFERENCE = "-1"
+
+DEPENDS = "${@((bb.data.getVar('LCDPROC_DRIVERS',d) or 'curses,text').find('curses') != -1) and 'ncurses' or ''}"
+RRECOMMENDS_lcdproc = "lcdd"
+
+SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/lcdproc;module=lcdproc"
+S = "${WORKDIR}/lcdproc"
+
+inherit autotools update-rc.d
+
+PACKAGES =+ "lcdd"
+
+CONFFILES_lcdd = "${sysconfdir}/LCDd.conf"
+CONFFILES_lcdproc = "${sysconfdir}/lcdproc.conf"
+
+FILES_lcdd = "${CONFFILES_lcdd} \
+       ${sbindir}/LCDd \
+       ${sysconfdir}/init.d/lcdd \
+       ${libdir}/lcdproc/"
+FILES_lcdproc = "${CONFFILES_lcdproc} \
+       ${bindir}/lcdproc \
+       ${sysconfdir}/init.d/lcdproc"
+
+INITSCRIPT_PACKAGES = "lcdd lcdproc"
+INITSCRIPT_NAME_lcdd = "lcdd"
+INITSCRIPT_NAME_lcdproc = "lcdproc"
+INITSCRIPT_PARAMS_lcdd = "defaults 70 21"
+INITSCRIPT_PARAMS_lcdproc = "defaults 71 20"
+
+EXTRA_OECONF = "${@'--enable-drivers=' + (bb.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 ${D}${sysconfdir}/init.d
+       # so far, not fixed :-( and now even uglier :-((
+       cat scripts/init-LCDd.debian | sed -e s'/--oknodo//' -e 's/ -s -f / -s 1 -f 1 /' -e 's/force-reload/force-restart/' -e 's/sleep 1/sleep 4/' > ${D}${sysconfdir}/init.d/lcdd
+       chmod 0755 ${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\n\ncase/' | sed -e s'/--oknodo//' > ${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
+
+       # driver library files
+       install -d ${D}${libdir}/lcdproc
+       for i in server/drivers/*.so; do
+               install -m 0644 $i ${D}${libdir}/lcdproc/
+       done
+}
+