[arch-commits] Commit in fwbuilder/repos (8 files)

Ike Devolder idevolder at nymeria.archlinux.org
Tue Feb 19 20:25:52 UTC 2013


    Date: Tuesday, February 19, 2013 @ 21:25:52
  Author: idevolder
Revision: 84546

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  fwbuilder/repos/community-staging-i686/
  fwbuilder/repos/community-staging-i686/PKGBUILD
    (from rev 84545, fwbuilder/trunk/PKGBUILD)
  fwbuilder/repos/community-staging-i686/fwbuilder-gcc47.patch
    (from rev 84545, fwbuilder/trunk/fwbuilder-gcc47.patch)
  fwbuilder/repos/community-staging-i686/fwbuilder.install
    (from rev 84545, fwbuilder/trunk/fwbuilder.install)
  fwbuilder/repos/community-staging-x86_64/
  fwbuilder/repos/community-staging-x86_64/PKGBUILD
    (from rev 84545, fwbuilder/trunk/PKGBUILD)
  fwbuilder/repos/community-staging-x86_64/fwbuilder-gcc47.patch
    (from rev 84545, fwbuilder/trunk/fwbuilder-gcc47.patch)
  fwbuilder/repos/community-staging-x86_64/fwbuilder.install
    (from rev 84545, fwbuilder/trunk/fwbuilder.install)

------------------------------------------------+
 community-staging-i686/PKGBUILD                |   33 +++++++++++++++++++++++
 community-staging-i686/fwbuilder-gcc47.patch   |   13 +++++++++
 community-staging-i686/fwbuilder.install       |   12 ++++++++
 community-staging-x86_64/PKGBUILD              |   33 +++++++++++++++++++++++
 community-staging-x86_64/fwbuilder-gcc47.patch |   13 +++++++++
 community-staging-x86_64/fwbuilder.install     |   12 ++++++++
 6 files changed, 116 insertions(+)

Copied: fwbuilder/repos/community-staging-i686/PKGBUILD (from rev 84545, fwbuilder/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-02-19 20:25:52 UTC (rev 84546)
@@ -0,0 +1,33 @@
+# $Id
+# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
+# Contributor: Kevin Piche <kevin at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=fwbuilder
+pkgver=5.1.0.3599
+pkgrel=3
+pkgdesc="Object-oriented GUI and set of compilers for various firewall platforms"
+url="http://www.fwbuilder.org/"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libxslt' 'net-snmp' 'qt4')
+conflicts=('libfwbuilder')
+install=fwbuilder.install
+source=("http://sourceforge.net/projects/fwbuilder/files/Current_Packages/${pkgver%.*}/fwbuilder-${pkgver}.tar.gz"
+		'fwbuilder-gcc47.patch')
+sha256sums=('452514a1ec0be1416bfca93603e6c89deb91d1a3a19671c64b5a8868a3743daf'
+			'd7c602d5b99c6e40403c0b02e34abf15de83802257ca5ce80ad53d486b692f27')
+
+build() {
+  cd "${srcdir}/fwbuilder-${pkgver}"
+  patch -p1 -i "$srcdir/fwbuilder-gcc47.patch"
+  export CXXFLAGS="$CXXFLAGS -fno-var-tracking-assignments"
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/fwbuilder-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Copied: fwbuilder/repos/community-staging-i686/fwbuilder-gcc47.patch (from rev 84545, fwbuilder/trunk/fwbuilder-gcc47.patch)
===================================================================
--- community-staging-i686/fwbuilder-gcc47.patch	                        (rev 0)
+++ community-staging-i686/fwbuilder-gcc47.patch	2013-02-19 20:25:52 UTC (rev 84546)
@@ -0,0 +1,13 @@
+Only in fwbuilder-5.0.1.3592: patches
+Only in fwbuilder-5.0.1.3592: .pc
+diff -upr fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h /var/tmp/build-root/home/abuild/rpmbuild/BUILD/fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h
+--- fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h	2011-12-08 02:02:07.000000000 +0100
++++ /var/tmp/build-root/home/abuild/rpmbuild/BUILD/fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h	2012-03-17 22:29:16.317275376 +0100
+@@ -31,6 +31,7 @@
+ 
+ #include <time.h> //for time_t definition
+ #include <pthread.h>
++#include <unistd.h>
+ 
+ #include <string>
+ #include <queue>

Copied: fwbuilder/repos/community-staging-i686/fwbuilder.install (from rev 84545, fwbuilder/trunk/fwbuilder.install)
===================================================================
--- community-staging-i686/fwbuilder.install	                        (rev 0)
+++ community-staging-i686/fwbuilder.install	2013-02-19 20:25:52 UTC (rev 84546)
@@ -0,0 +1,12 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}
+

Copied: fwbuilder/repos/community-staging-x86_64/PKGBUILD (from rev 84545, fwbuilder/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-02-19 20:25:52 UTC (rev 84546)
@@ -0,0 +1,33 @@
+# $Id
+# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
+# Contributor: Kevin Piche <kevin at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=fwbuilder
+pkgver=5.1.0.3599
+pkgrel=3
+pkgdesc="Object-oriented GUI and set of compilers for various firewall platforms"
+url="http://www.fwbuilder.org/"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libxslt' 'net-snmp' 'qt4')
+conflicts=('libfwbuilder')
+install=fwbuilder.install
+source=("http://sourceforge.net/projects/fwbuilder/files/Current_Packages/${pkgver%.*}/fwbuilder-${pkgver}.tar.gz"
+		'fwbuilder-gcc47.patch')
+sha256sums=('452514a1ec0be1416bfca93603e6c89deb91d1a3a19671c64b5a8868a3743daf'
+			'd7c602d5b99c6e40403c0b02e34abf15de83802257ca5ce80ad53d486b692f27')
+
+build() {
+  cd "${srcdir}/fwbuilder-${pkgver}"
+  patch -p1 -i "$srcdir/fwbuilder-gcc47.patch"
+  export CXXFLAGS="$CXXFLAGS -fno-var-tracking-assignments"
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/fwbuilder-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Copied: fwbuilder/repos/community-staging-x86_64/fwbuilder-gcc47.patch (from rev 84545, fwbuilder/trunk/fwbuilder-gcc47.patch)
===================================================================
--- community-staging-x86_64/fwbuilder-gcc47.patch	                        (rev 0)
+++ community-staging-x86_64/fwbuilder-gcc47.patch	2013-02-19 20:25:52 UTC (rev 84546)
@@ -0,0 +1,13 @@
+Only in fwbuilder-5.0.1.3592: patches
+Only in fwbuilder-5.0.1.3592: .pc
+diff -upr fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h /var/tmp/build-root/home/abuild/rpmbuild/BUILD/fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h
+--- fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h	2011-12-08 02:02:07.000000000 +0100
++++ /var/tmp/build-root/home/abuild/rpmbuild/BUILD/fwbuilder-5.0.1.3592/src/libfwbuilder/src/fwbuilder/ThreadTools.h	2012-03-17 22:29:16.317275376 +0100
+@@ -31,6 +31,7 @@
+ 
+ #include <time.h> //for time_t definition
+ #include <pthread.h>
++#include <unistd.h>
+ 
+ #include <string>
+ #include <queue>

Copied: fwbuilder/repos/community-staging-x86_64/fwbuilder.install (from rev 84545, fwbuilder/trunk/fwbuilder.install)
===================================================================
--- community-staging-x86_64/fwbuilder.install	                        (rev 0)
+++ community-staging-x86_64/fwbuilder.install	2013-02-19 20:25:52 UTC (rev 84546)
@@ -0,0 +1,12 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}
+




More information about the arch-commits mailing list