diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-15 15:15:02 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-15 15:15:02 +0000 |
commit | 51eb9547f2830a0fcbb76f228af4a130a4227a38 (patch) | |
tree | f5bc1d929da4552ca2ace5a94224df2b83127c57 /openwrt/package/amwall/Makefile | |
parent | 446e6c80f6616e593348e7bd32621b3d82f9c1ba (diff) |
add libamsel and amwall, an iptables frontend, like OpenBSD's pf, thx Eymen Alyaz
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1438 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/amwall/Makefile')
-rw-r--r-- | openwrt/package/amwall/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/openwrt/package/amwall/Makefile b/openwrt/package/amwall/Makefile new file mode 100644 index 0000000000..173a5d467b --- /dev/null +++ b/openwrt/package/amwall/Makefile @@ -0,0 +1,44 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=amwall +PKG_VERSION:=0.1.0 +PKG_RELEASE:=1 +PKG_MD5SUM:=a8b6438e7fd9ccadc9f68824ae62349c + +PKG_SOURCE_URL:=ftp://ftp.amselinux.net/source/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_CAT:=bzcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,AMWALL,amwall,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.prepared + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + LDIR=$(PKG_BUILD_DIR) \ + AMSEL_INCLUDE="$(STAGING_DIR)/usr/include" \ + OPT_LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + PREFIX="/usr" \ + CONFIG="$(PKG_BUILD_DIR)/etc/amsel" \ + DESTDIR=$(PKG_INSTALL_DIR) \ + all install + touch $@ + +$(IPKG_AMWALL): + install -d -m0755 $(IDIR_AMWALL)/usr/bin + cp -fpR $(PKG_INSTALL_DIR)/usr/bin/* $(IDIR_AMWALL)/usr/bin + install -d -m0755 $(IDIR_AMWALL)/usr/sbin + cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/* $(IDIR_AMWALL)/usr/sbin + install -d -m0755 $(IDIR_AMWALL)/etc/amsel + cp -fpR $(PKG_INSTALL_DIR)/etc/amsel* $(IDIR_AMWALL)/etc + $(RSTRIP) $(IDIR_AMWALL) + $(IPKG_BUILD) $(IDIR_AMWALL) $(PACKAGE_DIR) + |