From: Nicolas Thill Date: Mon, 24 Jul 2006 07:16:02 +0000 (+0000) Subject: port matrixtunnel to buildroot-ng X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a8653dafe8f06cc3775eaca581a6169ef83cc2ed;p=openwrt%2Fsvn-archive%2Fpackages.git port matrixtunnel to buildroot-ng SVN-Revision: 4250 --- diff --git a/net/matrixtunnel/Makefile b/net/matrixtunnel/Makefile new file mode 100644 index 000000000..91d9ddece --- /dev/null +++ b/net/matrixtunnel/Makefile @@ -0,0 +1,81 @@ +# +# 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:=matrixtunnel +PKG_VERSION:=0.1 +PKG_RELEASE:=1 + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://znerol.ch/files +PKG_MD5SUM:=ffbbe0c50cc1863f6080aca302f7e2c8 +PKG_CAT:=zcat + +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(INCLUDE_DIR)/package.mk + +define Package/matrixtunnel + SECTION:=net + CATEGORY:=Network + DEPENDS:=+libmatrixssl + TITLE:=SSL tunnel based on matrixssl + DESCRIPTION:=SSL tunnel based on matrixssl.\\\ + matrixtunnel is a stripped down version of stunnel \\\ + based on matrixssl library + URL:=http://znerol.ch/svn/matrixtunnel/trunk/ +endef + +define Build/Configure + (cd $(PKG_BUILD_DIR); rm -f config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/sbin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + $(DISABLE_LARGEFILE) \ + $(DISABLE_NLS) \ + --without-libiconv-prefix \ + --without-libintl-prefix \ + --with-matrixssl-src=$(BUILD_DIR)/matrixssl \ + ); +endef + +define Build/Compile + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR)/src \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install +endef + +define Package/matrixtunnel/install + install -d -m0755 $(1)/usr/sbin + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/matrixtunnel $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,matrixtunnel))