From: Nicolas Thill Date: Sat, 10 Jan 2015 19:11:53 +0000 (+0000) Subject: pen: moved to github X-Git-Url: http://git.openwrt.org/openwrt/packages.git?a=commitdiff_plain;h=b02b172dba43aff307cd23c1d5427f4669ced43f;p=openwrt%2Fsvn-archive%2Fpackages.git pen: moved to github SVN-Revision: 43918 --- diff --git a/net/pen/Makefile b/net/pen/Makefile deleted file mode 100644 index 464e7533c..000000000 --- a/net/pen/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# -# Copyright (C) 2006 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=pen -PKG_VERSION:=0.18.0 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=ftp://siag.nu/pub/pen/ -PKG_MD5SUM:=96f6d39e7e7cca11a647e795550f3829 - -include $(INCLUDE_DIR)/package.mk - -define Package/pen - SECTION:=net - CATEGORY:=Network - DEPENDS:=+libopenssl - TITLE:=Simple tcp load balancer - URL:=http://siag.nu/pen/ -endef - -define Package/pen/description - This is pen, a load balancer for "simple" tcp based protocols - such as http or smtp. It allows several servers to appear as - one to the outside and automatically detects servers that are - down and distributes clients among the available servers. - This gives high availability and scalable performance. -endef - -define Build/Configure - $(call Build/Configure/Default, \ - --with-poll \ - --with-experimental-only-ssl="$(STAGING_DIR)/usr" \ - ) -endef - -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) -endef - -define Package/pen/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/mergelogs $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/pen $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/penctl $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/penctl.cgi $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/penlog $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/penlogd $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/penstats $(1)/usr/bin/ -endef - -$(eval $(call BuildPackage,pen))