58 lines
1.6 KiB
Bash
58 lines
1.6 KiB
Bash
# Template file for 'shorewall'
|
|
pkgname=shorewall
|
|
version=5.0.12.1
|
|
revision=1
|
|
_disturl="http://www.shorewall.net/pub/${pkgname}/${version:0:3}/${pkgname}-${version:0:6}"
|
|
distfiles="
|
|
${_disturl}/${pkgname}-${version}.tar.bz2
|
|
${_disturl}/${pkgname}6-${version}.tar.bz2
|
|
${_disturl}/${pkgname}-core-${version}.tar.bz2"
|
|
checksum="acb6d61da1a522f1ffff27a32931e691785324a5803bf359f1dd8784d8ce743d
|
|
b8da035e95b8cb642bb21a8b440f8c6fb6d3d8d7722d8d421e8d8f6d9414524d
|
|
24d19836a4c6f8323d77848afb4d603c87e926c5412e8e82944b1a1b7c439bc9"
|
|
depends="shorewall-core perl"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.shorewall.net/"
|
|
license="GPL-2"
|
|
short_desc="An iptables-based firewall for Linux systems"
|
|
|
|
noarch=yes
|
|
create_wrksrc=yes
|
|
make_dirs="/var/lib/${pkgname} 0755 0 0"
|
|
conf_files="/etc/$pkgname/*"
|
|
|
|
do_build() {
|
|
for product in ${pkgname}{-core,6,}-${version}; do
|
|
cd ${wrksrc}/${product}
|
|
./configure HOST=archlinux SBINDIR=/usr/bin SERVICEDIR=
|
|
done
|
|
}
|
|
|
|
do_install() {
|
|
cd ${wrksrc}/${pkgname}-${version}
|
|
DESTDIR="${DESTDIR}" ./install.sh
|
|
vmkdir usr/share/doc/${pkgname}
|
|
cp -r Samples ${PKGDESTDIR}/usr/share/doc/${pkgname}
|
|
vsv shorewall
|
|
}
|
|
|
|
shorewall-core_package() {
|
|
noarch=yes
|
|
depends="iptables iproute2"
|
|
short_desc+=" - Core Shorewall files"
|
|
pkg_install() {
|
|
cd ${wrksrc}/${pkgname}-${version}
|
|
DESTDIR="${PKGDESTDIR}" ./install.sh
|
|
}
|
|
}
|
|
shorewall6_package() {
|
|
noarch=yes
|
|
depends="shorewall"
|
|
conf_files="/etc/$pkgname/*"
|
|
short_desc+=" - IPv6 support"
|
|
pkg_install() {
|
|
cd ${wrksrc}/${pkgname}-${version}
|
|
DESTDIR="${PKGDESTDIR}" ./install.sh
|
|
vsv shorewall6
|
|
}
|
|
}
|