diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-04 17:49:31 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-04 17:49:31 +0100 |
commit | 6045422139a0dbbefaf508b1343f11535d6b104e (patch) | |
tree | 40b9addde163397c5639279186e1b49a0705f05c /package/ebtables/Makefile | |
parent | 9f3987b09bded00d382e3fdd99bdf1afe106455f (diff) | |
parent | 5d93cc6de511d5330d0d0c7a0ebae8e6c9638e3d (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/ebtables/Makefile')
-rw-r--r-- | package/ebtables/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/ebtables/Makefile b/package/ebtables/Makefile new file mode 100644 index 000000000..2a2c7dfe3 --- /dev/null +++ b/package/ebtables/Makefile @@ -0,0 +1,32 @@ +# 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.mk + +PKG_NAME:= ebtables +PKG_VERSION:= 2.0.9 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 0e0c20adf2bba6d91dbd0b74a1a38c33 +PKG_DESCR:= ethernet bridging firewall tool +PKG_SECTION:= net +PKG_URL:= http://ebtables.sourceforge.net +PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=ebtables/} + +DISTFILES:= ${PKG_NAME}-v${PKG_VERSION}-1.tar.gz +WRKDIST= ${WRKDIR}/${PKG_NAME}-v${PKG_VERSION}-1 + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,EBTABLES,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_EBTABLES}/etc + ${INSTALL_DIR} ${IDIR_EBTABLES}/usr/sbin ${IDIR_EBTABLES}/usr/lib + ${INSTALL_DATA} ${WRKINST}/etc/ethertypes ${IDIR_EBTABLES}/etc + ${INSTALL_BIN} ${WRKINST}/usr/sbin/ebtables ${IDIR_EBTABLES}/usr/sbin + ${CP} ${WRKINST}/usr/lib/*.so ${IDIR_EBTABLES}/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |