108 lines
2.7 KiB
Text
108 lines
2.7 KiB
Text
# Template file for 'shorewall'
|
|
pkgname=shorewall
|
|
version=4.5.21.5
|
|
revision=2
|
|
_disturl="http://www.shorewall.net/pub/${pkgname}/4.5/${pkgname}-4.5.21"
|
|
distfiles="
|
|
${_disturl}/${pkgname}-${version}.tar.bz2
|
|
${_disturl}/${pkgname}6-${version}.tar.bz2
|
|
${_disturl}/${pkgname}-core-${version}.tar.bz2"
|
|
checksum="
|
|
e40ff86c16ffb9793e08bfa25ee057bdf73ff302077e5e6006cda974ed74af11
|
|
90a1e5b210ec3a90a6bdcda19e13d02d444bd9aabe6a3521816b54711d7f1023
|
|
2e0422a0c41a645a95846f3b0b9b355c26d53aaadc11b986a204fd9b67db78f1"
|
|
maintainer="Steven R <strob AT styez DOT com>"
|
|
homepage="http://www.shorewall.net/"
|
|
license="GPL"
|
|
short_desc="An iptables-based firewall for Linux systems"
|
|
|
|
create_wrksrc=yes
|
|
noarch="yes"
|
|
conf_files="
|
|
/etc/shorewall/accounting
|
|
/etc/shorewall/actions
|
|
/etc/shorewall/blrules
|
|
/etc/shorewall/clear
|
|
/etc/shorewall/conntrack
|
|
/etc/shorewall/ecn
|
|
/etc/shorewall/findgw
|
|
/etc/shorewall/hosts
|
|
/etc/shorewall/init
|
|
/etc/shorewall/initdone
|
|
/etc/shorewall/interfaces
|
|
/etc/shorewall/lib.private
|
|
/etc/shorewall/maclist
|
|
/etc/shorewall/masq
|
|
/etc/shorewall/nat
|
|
/etc/shorewall/netmap
|
|
/etc/shorewall/params
|
|
/etc/shorewall/policy
|
|
/etc/shorewall/providers
|
|
/etc/shorewall/proxyarp
|
|
/etc/shorewall/refresh
|
|
/etc/shorewall/refreshed
|
|
/etc/shorewall/restored
|
|
/etc/shorewall/routes
|
|
/etc/shorewall/stoppedrules
|
|
/etc/shorewall/rtrules
|
|
/etc/shorewall/rules
|
|
/etc/shorewall/scfilter
|
|
/etc/shorewall/secmarks
|
|
/etc/shorewall/shorewall.conf
|
|
/etc/shorewall/start
|
|
/etc/shorewall/started
|
|
/etc/shorewall/stop
|
|
/etc/shorewall/stopped
|
|
/etc/shorewall/tcclasses
|
|
/etc/shorewall/tcclear
|
|
/etc/shorewall/tcdevices
|
|
/etc/shorewall/tcfilters
|
|
/etc/shorewall/tcinterfaces
|
|
/etc/shorewall/tcpri
|
|
/etc/shorewall/tcrules
|
|
/etc/shorewall/tos
|
|
/etc/shorewall/tunnels
|
|
/etc/shorewall/zones"
|
|
|
|
depends="shorewall-core perl"
|
|
systemd_services="${pkgname}.service off"
|
|
make_dirs="/var/lib/${pkgname} 0755 0 0"
|
|
|
|
do_build(){
|
|
for product in ${pkgname}{-core,6,}-${version}; do
|
|
cd ${wrksrc}/${product}
|
|
./configure HOST=archlinux SBINDIR=/usr/bin
|
|
done
|
|
}
|
|
|
|
do_install() {
|
|
cd ${wrksrc}/${pkgname}-${version}
|
|
DESTDIR="${DESTDIR}" ./install.sh
|
|
vmkdir usr/share/doc/${pkgname}
|
|
cp -r Samples ${PKGDESTDIR}/usr/share/doc/${pkgname}
|
|
}
|
|
|
|
shorewall-core_package() {
|
|
noarch="yes"
|
|
depends="iptables iproute2"
|
|
short_desc+=" - Core Shorewall libraries"
|
|
pkg_install() {
|
|
cd ${wrksrc}/${pkgname}-${version}
|
|
DESTDIR="${PKGDESTDIR}" ./install.sh
|
|
}
|
|
}
|
|
|
|
shorewall6_package() {
|
|
noarch="yes"
|
|
depends="shorewall"
|
|
short_desc+=" - IPv6 support"
|
|
systemd_services="${pkgname}.service off"
|
|
make_dirs="/var/lib/${pkgname} 0755 0 0"
|
|
pkg_install() {
|
|
cd ${wrksrc}/${pkgname}-${version}
|
|
DESTDIR="${PKGDESTDIR}" ./install.sh
|
|
}
|
|
for f in ${PKGDESTDIR}/etc/${pkgname}/*; do
|
|
conf_files+="${f##${PKGDESTDIR}} "
|
|
done
|
|
}
|