Date: Thursday, October 23, 2014 @ 11:35:13 Author: alucryd Revision: 121270
upgpkg: firewalld 0.3.12-1 Modified: firewalld/trunk/PKGBUILD ----------+ PKGBUILD | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-10-23 09:01:12 UTC (rev 121269) +++ PKGBUILD 2014-10-23 09:35:13 UTC (rev 121270) @@ -1,43 +1,48 @@ # $Id$ -# Maintainer: Maxime Gauduin <[email protected]> +# Maintainer: Maxime Gauduin <[email protected]> # Contributor: unikum <[email protected]> # Contributor: speed145a <[email protected]> pkgname=firewalld -pkgver=0.3.11 +pkgver=0.3.12 pkgrel=1 pkgdesc='A dynamic firewall daemon with a D-BUS interface' arch=('any') -url="http://fedorahosted.org/${pkgname}" +url='http://fedorahosted.org/firewalld' license=('GPL2') -depends=('ebtables' 'gtk3' 'iptables' 'libnotify' 'networkmanager' 'python-slip') +depends=('ebtables' 'gtk3' 'iptables' 'libnotify' 'networkmanager' + 'python-slip') makedepends=('intltool' 'docbook-xsl') backup=('etc/conf.d/firewalld' 'etc/firewalld/firewalld.conf') -install="${pkgname}.install" -source=("http://fedorahosted.org/released/${pkgname}/${pkgname}-${pkgver}.tar.bz2" - "${pkgname}-paths.patch" - "${pkgname}-syntax.patch") -sha256sums=('02aeea580954d62abe7ad9ec053c2d943c7575d3f30e48e518a24d420b8a994f' +install='firewalld.install' +source=("http://fedorahosted.org/released/firewalld/firewalld-${pkgver}.tar.bz2" + "firewalld-paths.patch" + "firewalld-syntax.patch") +sha256sums=('7909e29ef276f4c87e52a0c26d3184ad7dd1cf6bff04a4ab875662bc519bf48c' '41591c5358c5ad8d43b29d72f42c331fcfc25e3d38c0ba5b3c818fc757ceef2f' '42f0e4dbf574ac7b87df77117816dbc4a2ac17f709a22990eeeb973950cc6322') prepare() { - cd ${pkgname}-${pkgver} + cd firewalld-${pkgver} - patch -Np1 -i ../${pkgname}-paths.patch - patch -Np1 -i ../${pkgname}-syntax.patch + patch -Np1 -i ../firewalld-paths.patch + patch -Np1 -i ../firewalld-syntax.patch } build() { - cd ${pkgname}-${pkgver} + cd firewalld-${pkgver} - ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' --disable-schemas-compile + ./configure --prefix='/usr'\ + --localstatedir='/var' \ + --sbindir='/usr/bin' \ + --sysconfdir='/etc' \ + --disable-schemas-compile make } package() { - cd ${pkgname}-${pkgver} + cd firewalld-${pkgver} make DESTDIR="${pkgdir}" install }
