Merge bk://oe-devel.bkbits.net/openembedded
authornslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>
Sat, 25 Dec 2004 18:40:06 +0000 (18:40 +0000)
committernslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>
Sat, 25 Dec 2004 18:40:06 +0000 (18:40 +0000)
into bkbits.net:/repos/n/nslu2-linux/openembedded

2004/12/25 18:54:27+01:00 uni-frankfurt.de!mickeyl
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages

2004/12/25 18:54:19+01:00 uni-frankfurt.de!mickeyl
fbvncserver: use update-rc.d class instead of handcoding runlevels

2004/12/25 00:58:28+01:00 uni-frankfurt.de!mickeyl
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages

2004/12/25 00:58:13+01:00 uni-frankfurt.de!mickeyl
move tar to its proper place

BKrev: 41cdb406zzMCfc2ai79W5GAdiKuRVA

packages/fbvncserver/fbvncserver_0.9.4.bb
packages/tar/tar/tar-native_1.13.25.oe [moved from tar/tar-native_1.13.25.oe with 100% similarity]

index e69de29..7fe905c 100644 (file)
@@ -0,0 +1,41 @@
+DESCRIPTION = "framebuffer VNC server"
+LICENSE = "GPL"
+SECTION = "console/utils"
+DEPENDS = "libvncserver jpeg zlib"
+RDEPENDS = "fbvncserver-kmodule libvncserver-storepasswd libvncserver-javaapplet"
+PR = "r1"
+
+SRC_URI = "http://sdgsystems.com/download/fbvncserver-${PV}.tar.gz \
+           file://libvncs0.6.patch;patch=1 \
+           file://paths.patch;patch=1 \
+           file://kernelinclude.patch;patch=1 \
+           file://zaurus_panel.jpg \
+           file://init"
+         
+export INCLUDES = "-I${STAGING_INCDIR}"
+
+export LIBS = "-L${STAGING_LIBDIR} -lpthread"
+export VNCSERVER_DIR = "${STAGING_LIBDIR}"
+export ZAURUS_ZLIB_LIBS = "${STAGING_LIBDIR}"
+export ZAURUS_JPEG_LIBS = "${STAGING_LIBDIR}"
+
+inherit update-rc.d
+
+INITSCRIPT_NAME = "fbvncinput"
+INITSCRIPT_PARAMS = "defaults 97"
+
+do_compile () {
+       oe_runmake zaurus_fbvncserver zaurus_tssimd
+}
+
+do_install () {
+       install -d ${D}/usr/bin
+       install -m 0755 zaurus_fbvncserver ${D}/usr/bin/fbvncserver
+       install -m 0755 zaurus_tssimd ${D}/usr/bin/tssimd
+       
+       install -d ${D}/usr/share/fbvncserver
+       install -m 0644 ${WORKDIR}/zaurus_panel.jpg ${D}/usr/share/fbvncserver/
+       
+       install -d ${D}/${sysconfdir}/init.d
+       install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/fbvncinput
+}