mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-firewall/fwbuilder: Drop old
Package-Manager: Portage-2.3.13, Repoman-2.3.3
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST fwbuilder-5.0.1.3592.tar.gz 6733502 BLAKE2B eb234f0b3609c33527321c9589a1f229df7a7aaabaab8b254af4e560b19ed8f798c1b4e51590d8ef6c86b5f57c69ac0ba654adb0c09fb0fbb3085962470588b4 SHA512 aac34c97963819f0dca4a6bfa63987df45cdd6905164b49ae6f6a423f044fc52aeb09b15b2fc294e1aa3da97d3d31e75bdf9a690e383f579a2fb40ef656f4885
|
||||
DIST fwbuilder-5.3.7.tar.gz 7332419 BLAKE2B 130c5ab413263b61b7a78dfabe8d0db861ddfd8bfcee62eb11b9ac8c229c9a9e2b6d8a22e296a12e0e9d0fd9b503882eb06e62f7dc0f62487d760191fce8b553 SHA512 d6504ddab17e80cb332f005b6bbb16c15a7b4735361733f0e0437cb94059a5c9039e563be6e0e8d328954db2416b2c0bdbb8afa36cd946f61e7c7edaee47453b
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
diff -Naurp fwbuilder-5.0.0.3568.orig//qmake.inc.in fwbuilder-5.0.0.3568//qmake.inc.in
|
||||
--- fwbuilder-5.0.0.3568.orig//qmake.inc.in 2011-07-25 19:27:44.000000000 -0400
|
||||
+++ fwbuilder-5.0.0.3568//qmake.inc.in 2011-08-19 17:00:41.259985388 -0400
|
||||
@@ -39,6 +39,7 @@ unix {
|
||||
QMAKE_CFLAGS_RELEASE += -Wno-unused-parameter
|
||||
QMAKE_CXXFLAGS_DEBUG += -Wno-unused-parameter
|
||||
QMAKE_CXXFLAGS_RELEASE += -Wno-unused-parameter
|
||||
+ QMAKE_LFLAGS = @LDFLAGS@
|
||||
|
||||
!macx {
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
--- a/src/libfwbuilder/src/fwbuilder/ThreadTools.h 2012-06-04 15:02:55.909203733 -0400
|
||||
+++ b/src/libfwbuilder/src/fwbuilder/ThreadTools.h 2012-06-04 15:04:54.079198998 -0400
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
#include <time.h> //for time_t definition
|
||||
#include <pthread.h>
|
||||
-
|
||||
+#include <unistd.h>
|
||||
#include <string>
|
||||
#include <queue>
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
From: Vadim Kurland <vadim@slot.vk.crocodile.org>
|
||||
Date: Tue, 14 Feb 2012 04:59:26 +0000 (-0800)
|
||||
Subject: fix for SF bug #3468802. Define macro __STDC_FORMAT_MACROS. This still
|
||||
X-Git-Url: http://fwbuilder.git.sourceforge.net/git/gitweb.cgi?p=fwbuilder%2Ffwbuilder;a=commitdiff_plain;h=f97a1b50ba51be5fa31cc54dba829a9e77609160;hp=15565ade5dc843e5fefe83568a023c37256c3c3c
|
||||
|
||||
fix for SF bug #3468802. Define macro __STDC_FORMAT_MACROS. This still
|
||||
needs to be tested on all build machines.
|
||||
---
|
||||
|
||||
diff --git a/qmake.inc.in b/qmake.inc.in
|
||||
index 6bf27e0..3e31fd6 100644
|
||||
--- a/qmake.inc.in
|
||||
+++ b/qmake.inc.in
|
||||
@@ -67,6 +67,9 @@ unix {
|
||||
|
||||
CONFIG += warn_on
|
||||
|
||||
+ QMAKE_CXXFLAGS_DEBUG += -D__STDC_FORMAT_MACROS
|
||||
+ QMAKE_CXXFLAGS_RELEASE += -D__STDC_FORMAT_MACROS
|
||||
+
|
||||
}
|
||||
}
|
||||
|
||||
diff --git a/src/libfwbuilder/qmake.inc.in b/src/libfwbuilder/qmake.inc.in
|
||||
index b4f15bb..a8114cf 100644
|
||||
--- a/src/libfwbuilder/qmake.inc.in
|
||||
+++ b/src/libfwbuilder/qmake.inc.in
|
||||
@@ -34,6 +34,9 @@ unix {
|
||||
QMAKE_CXXFLAGS_DEBUG += -Wno-unused-parameter @CXXFLAGS@
|
||||
QMAKE_CXXFLAGS_RELEASE += -Wno-unused-parameter @CXXFLAGS@
|
||||
|
||||
+ QMAKE_CXXFLAGS_DEBUG += -D__STDC_FORMAT_MACROS
|
||||
+ QMAKE_CXXFLAGS_RELEASE += -D__STDC_FORMAT_MACROS
|
||||
+
|
||||
exec_prefix = @EXEC_PREFIX@
|
||||
DESTDIR =
|
||||
|
||||
diff --git a/src/libfwbuilder/src/fwbuilder/uint128.h b/src/libfwbuilder/src/fwbuilder/uint128.h
|
||||
index 0a2e7a4..b00ab47 100644
|
||||
--- a/src/libfwbuilder/src/fwbuilder/uint128.h
|
||||
+++ b/src/libfwbuilder/src/fwbuilder/uint128.h
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
-#define __STDC_FORMAT_MACROS
|
||||
+// #define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h> // for sprintf formats for "long long"
|
||||
|
||||
// convinience macro
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="4"
|
||||
|
||||
inherit eutils base qt4-r2 multilib autotools
|
||||
|
||||
DESCRIPTION="A firewall GUI"
|
||||
HOMEPAGE="http://www.fwbuilder.org/"
|
||||
SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-qt/qtgui-4.3:4
|
||||
dev-libs/openssl
|
||||
dev-libs/elfutils"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-5.0.0.3568-ldflags.patch"
|
||||
"${FILESDIR}/${PN}-5.0.1.3592-gcc47.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
# Fix a compile bug that affects some x86_64 platforms.
|
||||
# Addressed in the upcoming 5.0.2.3596 release.
|
||||
# Closes #395151.
|
||||
epatch "${FILESDIR}/${P}-stdc-format-macros.patch"
|
||||
|
||||
qt4-r2_src_prepare
|
||||
sed -i -e '/dnl.*AM_INIT_AUTOMAKE/d' configure.in || die #398743
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake4
|
||||
# portage handles ccache/distcc itself
|
||||
econf --without-{ccache,distcc}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "You need to emerge sys-apps/iproute2 on the machine"
|
||||
elog "that will run the firewall script."
|
||||
}
|
||||
Reference in New Issue
Block a user