2006-08-10 22:08:41 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=vnc-reflector
|
|
|
|
PKG_VERSION:=1.2.4
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=vnc_reflector-$(PKG_VERSION).tar.gz
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/vnc-reflector
|
|
|
|
PKG_MD5SUM:=c3f88bc62f228b335c25c07f9744ab0c
|
2006-08-10 22:08:41 +00:00
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/vnc_reflector
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/vnc-reflector
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2006-10-19 13:15:56 +00:00
|
|
|
DEPENDS:=+libjpeg +zlib
|
2006-08-10 22:08:41 +00:00
|
|
|
TITLE:=VNC proxy for multiple clients
|
2006-10-30 13:51:50 +00:00
|
|
|
DESCRIPTION:=\
|
|
|
|
VNC Reflector is a specialized VNC server which acts as \\\
|
|
|
|
a proxy sitting between real VNC server (a host) and a \\\
|
|
|
|
number of VNC clients. It was designed to work efficiently \\\
|
|
|
|
with large number of clients.
|
2006-08-10 22:08:41 +00:00
|
|
|
URL:=http://sourceforge.net/projects/vnc-reflector
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Build/Compile/Default, \
|
|
|
|
CC="$(TARGET_CC)" \
|
2006-08-10 22:08:41 +00:00
|
|
|
OFLAGS="$(TARGET_CFLAGS)" \
|
2006-10-30 13:51:50 +00:00
|
|
|
STAGING_DIR="$(STAGING_DIR)" \
|
|
|
|
default \
|
|
|
|
)
|
2006-08-10 22:08:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/vnc-reflector/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/vncreflector $(1)/usr/sbin/
|
2006-08-10 22:08:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,vnc-reflector))
|