summaryrefslogtreecommitdiff
path: root/package/x11vnc
diff options
context:
space:
mode:
authorwbx <wbx@openadk.org>2011-04-29 18:09:11 +0200
committerwbx <wbx@openadk.org>2011-04-29 18:09:11 +0200
commited5d1f8b7bfb0015e22dbc95f01a253a81b81f36 (patch)
tree0f0020fa0eb348a1bbbd044b7733c3e8e242e146 /package/x11vnc
parent7cc2a1778bdea47e6737ed6109fc88e32253a41b (diff)
parentfb5986b361eae7893a57e92ec0a4f820b89bc527 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/x11vnc')
-rw-r--r--package/x11vnc/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/package/x11vnc/Makefile b/package/x11vnc/Makefile
new file mode 100644
index 000000000..74e01e1f7
--- /dev/null
+++ b/package/x11vnc/Makefile
@@ -0,0 +1,32 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= x11vnc
+PKG_VERSION:= 0.9.12
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 1498a68d02aa7b6c97bf746c073c8d00
+PKG_DESCR:= VNC server for X11 displays
+PKG_SECTION:= x11/apps
+PKG_BUILDDEP:= libX11 libXtst
+PKG_URL:= http://www.karlrunge.com/x11vnc/
+PKG_SITES:= http://openadk.org/distfiles/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,X11VNC,x11vnc,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+ifeq ($(ADK_STATIC),y)
+MAKE_FLAGS+= CFLAGS="${TARGET_CFLAGS} -static" \
+ LIBS="-lxcb -lXau -lXdmcp -ldl -pthread -ljpeg -lz"
+endif
+
+CONFIGURE_ARGS+= --without-ssl
+
+x11vnc-install:
+ $(INSTALL_DIR) $(IDIR_X11VNC)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/x11vnc \
+ $(IDIR_X11VNC)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk