| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | # 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.mkPKG_NAME:=		iptablesPKG_VERSION:=		1.4.6PKG_RELEASE:=		1PKG_MD5SUM:=		c67cf30e281a924def6426be0973df56PKG_DESCR:=		The netfilter firewalling softwarePKG_SECTION:=		netPKG_URL:=		http://www.netfilter.orgPKG_SITES:=		http://www.netfilter.org/projects/iptables/files/ \			ftp://ftp.be.netfilter.org/pub/netfilter/iptables/ \			ftp://ftp.de.netfilter.org/pub/netfilter/iptables/ \			ftp://ftp.no.netfilter.org/pub/netfilter/iptables/DISTFILES:=		${PKG_NAME}-${PKG_VERSION}.tar.bz2include ${TOPDIR}/mk/package.mk# right now default extensions are builtin# use --disable-static in CONFIGURE_ARGS to change and optimize package#include ${LINUX_DIR}/.config$(eval $(call PKG_template,IPTABLES,iptables,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))$(eval $(call PKG_template,IP6TABLES,ip6tables,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_STYLE:=	gnuCONFIGURE_ARGS+=	--enable-develBUILD_STYLE:=		autoINSTALL_STYLE:=		autoSUB_INSTALL-${ADK_PACKAGE_IP6TABLES}+=			ip6tables-installpost-install: ${SUB_INSTALL-m} ${SUB_INSTALL-y}	${INSTALL_DIR} ${IDIR_IPTABLES}/{usr/lib,etc,usr/sbin}	${INSTALL_DATA} ./files/firewall.conf ${IDIR_IPTABLES}/etc	${CP} ${WRKINST}/usr/sbin/iptables* ${IDIR_IPTABLES}/usr/sbin/	${CP} ${WRKINST}/usr/lib/libiptc.so* ${IDIR_IPTABLES}/usr/lib	${CP} ${WRKINST}/usr/lib/libip4tc.so* ${IDIR_IPTABLES}/usr/lib	${CP} ${WRKINST}/usr/lib/libxtables.so* ${IDIR_IPTABLES}/usr/libip6tables-install:	${INSTALL_DIR} ${IDIR_IP6TABLES}/usr/lib	${INSTALL_DIR} ${IDIR_IP6TABLES}/usr/sbin	${INSTALL_BIN} ${WRKINST}/usr/sbin/ip6tables ${IDIR_IP6TABLES}/usr/sbin/	${CP} ${WRKINST}/usr/lib/libip6tc.so* ${IDIR_IP6TABLES}/usr/libinclude ${TOPDIR}/mk/pkg-bottom.mk
 |