summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Arnold <nerdboy@gentoo.org>2006-01-08 22:14:34 +0000
committerSteve Arnold <nerdboy@gentoo.org>2006-01-08 22:14:34 +0000
commit95881ad731ce10ec3ae7f731e8fdd1d821e8cc11 (patch)
tree1f98011c3df599dd83099183091bc01a33ecd4c3 /net-misc
parentDisabled jikes support due to bug #108819. (diff)
downloadhistorical-95881ad731ce10ec3ae7f731e8fdd1d821e8cc11.tar.gz
historical-95881ad731ce10ec3ae7f731e8fdd1d821e8cc11.tar.bz2
historical-95881ad731ce10ec3ae7f731e8fdd1d821e8cc11.zip
Updated with partial fix for bug 74457
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/hylafax/ChangeLog7
-rw-r--r--net-misc/hylafax/Manifest6
-rw-r--r--net-misc/hylafax/hylafax-4.2.3-r1.ebuild10
-rw-r--r--net-misc/hylafax/hylafax-4.2.4.ebuild10
4 files changed, 25 insertions, 8 deletions
diff --git a/net-misc/hylafax/ChangeLog b/net-misc/hylafax/ChangeLog
index ca609f89483d..a8fca5f3161e 100644
--- a/net-misc/hylafax/ChangeLog
+++ b/net-misc/hylafax/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/hylafax
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/ChangeLog,v 1.60 2006/01/06 03:02:36 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/ChangeLog,v 1.61 2006/01/08 22:14:34 nerdboy Exp $
+
+ 08 Jan 2006; Steve Arnold <nerdboy@gentoo.org> hylafax-4.2.3-r1.ebuild,
+ hylafax-4.2.4.ebuild:
+ Updated with partial fix for bug 74457; thanks to kerframil for the tests
+ and recommended fix (goes away once it works correctly with SSP).
06 Jan 2006; Steve Arnold <nerdboy@gentoo.org>
-files/configure-gcc-3.4.patch, -files/hylafax-4.2.0-fPIC.patch,
diff --git a/net-misc/hylafax/Manifest b/net-misc/hylafax/Manifest
index f2f9d8cccbf6..f273bd79821f 100644
--- a/net-misc/hylafax/Manifest
+++ b/net-misc/hylafax/Manifest
@@ -1,10 +1,10 @@
-MD5 ee09a5fe8c3bbabf7c114b5e904cba9f ChangeLog 12977
+MD5 b7051bb614a1c9552123c1845f7e1678 ChangeLog 13220
MD5 fa83948864d83f34f54ce35f26b38ed6 files/99hylafax-4.2 75
MD5 f9beb4e52eb7048b39f745a7a72b892c files/digest-hylafax-4.2.3-r1 66
MD5 be02aba24a3d489a6ace152f25889e39 files/digest-hylafax-4.2.4 66
MD5 491e78765b433d7c11146120cf7e40f8 files/hylafax-4.2 3759
MD5 b6a1547c8ea1f4cd6f2598838f74e95e files/hylafax-4.2.3-faxrcvd-eval-vulnerability.patch 831
MD5 f5ab440f7054627896009d94f5a5b735 files/hylafax-4.2.3-notify-eval-vulnerability.patch 2037
-MD5 8495ecfe28e223a6c7f8884ad1807ce5 hylafax-4.2.3-r1.ebuild 3912
-MD5 17b5f8e18c0d51312bde29367423ec77 hylafax-4.2.4.ebuild 3759
+MD5 32fb5f932798f058bacfcaeff7030418 hylafax-4.2.3-r1.ebuild 4189
+MD5 fbe20bc73b5b9bfe95da6379ce25413f hylafax-4.2.4.ebuild 4036
MD5 d82acf1bcf0f7f9e181d6a2821292f2e metadata.xml 435
diff --git a/net-misc/hylafax/hylafax-4.2.3-r1.ebuild b/net-misc/hylafax/hylafax-4.2.3-r1.ebuild
index 69b489526d68..ec756d67d695 100644
--- a/net-misc/hylafax/hylafax-4.2.3-r1.ebuild
+++ b/net-misc/hylafax/hylafax-4.2.3-r1.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.2.3-r1.ebuild,v 1.2 2006/01/06 03:02:36 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.2.3-r1.ebuild,v 1.3 2006/01/08 22:14:34 nerdboy Exp $
-inherit eutils multilib pam
+inherit eutils multilib pam flag-o-matic toolchain-funcs
IUSE="faxonly jpeg pam mgetty"
@@ -43,6 +43,12 @@ src_compile() {
eerror "You cannot set both faxonly and mgetty, please remove one." && die "invalid use flags"
fi
fi
+
+ # Hylafax doesn't play nice with gcc-3.4 and SSP (bug #74457)
+ # so drop the flags until a better solution comes along
+ [ $(gcc-major-version) -eq 3 ] && [ $(gcc-minor-version) -ge 4 ] \
+ && filter-flags -fstack-protector -fstack-protector-all
+
local my_conf="
--with-DIR_BIN=/usr/bin
--with-DIR_SBIN=/usr/sbin
diff --git a/net-misc/hylafax/hylafax-4.2.4.ebuild b/net-misc/hylafax/hylafax-4.2.4.ebuild
index 6ef6b3d4c699..7f1ac816cb23 100644
--- a/net-misc/hylafax/hylafax-4.2.4.ebuild
+++ b/net-misc/hylafax/hylafax-4.2.4.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.2.4.ebuild,v 1.1 2006/01/05 07:51:49 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.2.4.ebuild,v 1.2 2006/01/08 22:14:34 nerdboy Exp $
-inherit eutils multilib pam
+inherit eutils multilib pam flag-o-matic toolchain-funcs
IUSE="faxonly jpeg pam mgetty"
@@ -35,6 +35,12 @@ src_compile() {
eerror "You cannot set both faxonly and mgetty, please remove one." && die "invalid use flags"
fi
fi
+
+ # Hylafax doesn't play nice with gcc-3.4 and SSP (bug #74457)
+ # so drop the flags until a better solution comes along
+ [ $(gcc-major-version) -eq 3 ] && [ $(gcc-minor-version) -ge 4 ] \
+ && filter-flags -fstack-protector -fstack-protector-all
+
local my_conf="
--with-DIR_BIN=/usr/bin
--with-DIR_SBIN=/usr/sbin