diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-01 15:40:06 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-01 15:40:06 +0000 |
commit | 1378756abdd60f4f2773b641e7a47efc40db2f62 (patch) | |
tree | 58f9ffa0ed62699dd78fbf0e05c8f756bdc8763a /packages/iptables/iptables_1.2.11.bb | |
parent | 50dbf8735688d2089517b32abb6209e1057287eb (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/01 15:33:31+00:00 nexus.co.uk!pb
add RPROVIDES for audiofile
2005/01/01 15:33:09+00:00 nexus.co.uk!pb
remove xprop from meta-gpe and meta-sectest-gpe
2005/01/01 15:32:04+00:00 nexus.co.uk!pb
relegate iptables-save and iptables-restore to iptables-utils package
2005/01/01 14:52:58+00:00 nexus.co.uk!pb
fix xprop to use libXmuu, not libXmu
2005/01/01 14:50:18+00:00 nexus.co.uk!pb
fix xrdb to use libXmuu, not libXmu
2005/01/01 14:49:45+00:00 nexus.co.uk!pb
fix xhost to use libXmuu, not libXmu
2005/01/01 14:46:05+00:00 nexus.co.uk!pb
fix xset to use libXmuu, not libXmu
2005/01/01 14:45:23+00:00 nexus.co.uk!pb
update gpe-contacts to 0.34
2005/01/01 14:44:56+00:00 nexus.co.uk!pb
fix xauth to use libXmuu, not libXmu
2005/01/01 14:42:26+00:00 nexus.co.uk!pb
split libXmuu from libXmu
BKrev: 41d6c456Kg0GF-pB7EYbYUh24-OHNg
Diffstat (limited to 'packages/iptables/iptables_1.2.11.bb')
-rw-r--r-- | packages/iptables/iptables_1.2.11.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/iptables/iptables_1.2.11.bb b/packages/iptables/iptables_1.2.11.bb index e69de29bb2..c8965d64a5 100644 --- a/packages/iptables/iptables_1.2.11.bb +++ b/packages/iptables/iptables_1.2.11.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "iptables network filtering tools" +HOMEPAGE = "http://www.netfilter.org/" +SECTION = "console/utils" +LICENSE = "GPL" +PR = "r1" + +PACKAGES =+ "${PN}-utils" +FILES_${PN}-utils = "${bindir}/iptables-save ${bindir}/iptables-restore" + +SRC_URI = "http://www.netfilter.org/files/iptables-${PV}.tar.bz2" + +S = "${WORKDIR}/iptables-${PV}" + +export COPT_FLAGS = "${CFLAGS}" +export KERNEL_DIR = "${STAGING_INCDIR}" + +do_compile () { + unset CFLAGS + oe_runmake BINDIR=${D}/${bindir} LIBDIR=${D}/${libdir} MANDIR=${D}/${mandir} NO_SHARED_LIBS=1 +} + +do_install () { + oe_runmake BINDIR=${D}/${bindir} LIBDIR=${D}/${libdir} MANDIR=${D}/${mandir} install NO_SHARED_LIBS=1 +} + +FILES_${PN}-doc += "${mandir}" + |