diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-03-01 16:28:47 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-01 16:28:47 +0000 |
commit | 3ac46586645727f3385b3ab8baa51248ba3bc1bf (patch) | |
tree | 6d5456a3b8c7b98431b98ac617715dc2ca27d908 /packages/vnc | |
parent | cee59f75f31aaad5e026b665fb2a1823107509ff (diff) |
tightvnc_1.3dev7.bb : add tightvnc recipe
Diffstat (limited to 'packages/vnc')
-rw-r--r-- | packages/vnc/tightvnc/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/vnc/tightvnc/Makefile | 23 | ||||
-rw-r--r-- | packages/vnc/tightvnc_1.3dev7.bb | 24 |
3 files changed, 47 insertions, 0 deletions
diff --git a/packages/vnc/tightvnc/.mtn2git_empty b/packages/vnc/tightvnc/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/vnc/tightvnc/.mtn2git_empty diff --git a/packages/vnc/tightvnc/Makefile b/packages/vnc/tightvnc/Makefile new file mode 100644 index 0000000000..0367fbc702 --- /dev/null +++ b/packages/vnc/tightvnc/Makefile @@ -0,0 +1,23 @@ +SOURCES = argsresources.c \ +caps.c \ +colour.c \ +cursor.c \ +desktop.c \ +dialogs.c \ +fullscreen.c \ +listen.c \ +misc.c \ +popup.c \ +rfbproto.c \ +selection.c \ +shm.c \ +sockets.c \ +tunnel.c \ +vncviewer.c \ +../libvncauth/vncauth.c \ +../libvncauth/d3des.c + +tightvncviewer : $(SOURCES) + #/home/dp/zaurus/build-gcc/tmp/cross/bin/arm-linux-gcc -I../include -I/home/dp/zaurus/build-gcc/tmp/staging/arm-linux/include/ -I. -L/home/dp/zaurus/build-gcc/tmp/staging/arm-linux/lib/ -lX11 -lXaw -o vncviewer $(SOURCES) + $(CC) $(CFLAGS) $(LDFLAGS) -I. -I../include -I../libvncauth/ -lX11 -lXaw -ljpeg -lz -o tightvncviewer $(SOURCES) + diff --git a/packages/vnc/tightvnc_1.3dev7.bb b/packages/vnc/tightvnc_1.3dev7.bb new file mode 100644 index 0000000000..8866176b8f --- /dev/null +++ b/packages/vnc/tightvnc_1.3dev7.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "A Unix VNC client" +HOMEPAGE = "http://www.tightvnc.com/" +DEPENDS = "x11 zlib xmu xaw" +LICENSE = "GPL" +MAINTAINER = "Graeme Gregory <dp@xora.org.uk>" + +SRC_URI = "${SOURCEFORGE_MIRROR}/vnc-tight/tightvnc-1.3dev7_unixsrc.tar.gz \ + file://Makefile" + +S = ${WORKDIR}/vnc_unixsrc/vncviewer/ + +PACKAGES="tightvncviewer" +FILES_tightvncviewer = "/usr/bin/tightvncviewer" + +do_compile () { + install ${WORKDIR}/Makefile ${S} + oe_runmake +} + +do_install () { + install -d ${D}${bindir} + install tightvncviewer ${D}${bindir} +} + |