Merge pull request #1694 from beefcurtains/arptables
New package: arptables-0.0.4
This commit is contained in:
commit
edb8e444a0
5
srcpkgs/arptables/files/arptables/finish
Executable file
5
srcpkgs/arptables/files/arptables/finish
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
RULES=/etc/iptables/arptables.rules
|
||||||
|
[ -r conf ] && . ./conf
|
||||||
|
[ -n $SKIP_SAVE ] && exit 0
|
||||||
|
arptables-save > $RULES
|
6
srcpkgs/arptables/files/arptables/run
Executable file
6
srcpkgs/arptables/files/arptables/run
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
RULES=/etc/iptables/arptables.rules
|
||||||
|
[ -r conf ] && . ./conf
|
||||||
|
[ -r $RULES ] || exit 0
|
||||||
|
arptables-restore < $RULES
|
||||||
|
exec chpst -b arptables pause
|
13
srcpkgs/arptables/patches/makefile-cflags.patch
Normal file
13
srcpkgs/arptables/patches/makefile-cflags.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
-D__GLIBC__=2 is required to build on *-musl,
|
||||||
|
it's normally defined by features.h of glibc.
|
||||||
|
--- Makefile.orig
|
||||||
|
+++ Makefile
|
||||||
|
@@ -11,7 +11,7 @@
|
||||||
|
DESTDIR:=
|
||||||
|
|
||||||
|
COPT_FLAGS:=-O2
|
||||||
|
-CFLAGS:=$(COPT_FLAGS) -Wall -Wunused -I$(KERNEL_DIR)/include/ -Iinclude/ -DARPTABLES_VERSION=\"$(ARPTABLES_VERSION)\" #-g -DDEBUG #-pg # -DARPTC_DEBUG
|
||||||
|
+override CFLAGS+=-Wall -D__GLIBC__=2 -Iinclude/ -DARPTABLES_VERSION=\"$(ARPTABLES_VERSION)\"
|
||||||
|
|
||||||
|
ifndef ARPT_LIBDIR
|
||||||
|
ARPT_LIBDIR:=$(LIBDIR)/arptables
|
21
srcpkgs/arptables/template
Normal file
21
srcpkgs/arptables/template
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Template file for 'arptables'
|
||||||
|
pkgname=arptables
|
||||||
|
version=0.0.4
|
||||||
|
revision=1
|
||||||
|
wrksrc="${pkgname}-v${version}"
|
||||||
|
build_style=gnu-makefile
|
||||||
|
depends="perl"
|
||||||
|
short_desc="ARP table administration"
|
||||||
|
maintainer="beefcurtains <beefcurtains@users.noreply.github.com>"
|
||||||
|
license="GPL-2"
|
||||||
|
homepage="http://ebtables.sourceforge.net/"
|
||||||
|
distfiles="ftp://ftp.netfilter.org/pub/arptables/arptables-v0.0.4.tar.gz"
|
||||||
|
checksum=277985e29ecd93bd759a58242cad0e02ba9d4a6e1b7795235e3b507661bc0049
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
vbin arptables
|
||||||
|
vbin arptables-restore
|
||||||
|
vbin arptables-save
|
||||||
|
vman arptables.8
|
||||||
|
vsv arptables
|
||||||
|
}
|
1
srcpkgs/arptables/update
Normal file
1
srcpkgs/arptables/update
Normal file
@ -0,0 +1 @@
|
|||||||
|
pattern="${pkgname}-v\\K[\\d.]+(?=\\.tar)"
|
Loading…
x
Reference in New Issue
Block a user