summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Arnold <nerdboy@gentoo.org>2004-10-25 22:18:40 +0000
committerSteve Arnold <nerdboy@gentoo.org>2004-10-25 22:18:40 +0000
commitabe4874c03b290107e04cedf14a9cb6e5dd24492 (patch)
tree794f458823087ae0d62d56d1ab1d09aeaad902b3 /net-misc
parentremoved out-dated ebuilds (diff)
downloadhistorical-abe4874c03b290107e04cedf14a9cb6e5dd24492.tar.gz
historical-abe4874c03b290107e04cedf14a9cb6e5dd24492.tar.bz2
historical-abe4874c03b290107e04cedf14a9cb6e5dd24492.zip
added missing patch file (really fixes bug 66794)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/hylafax/ChangeLog6
-rw-r--r--net-misc/hylafax/Manifest3
-rw-r--r--net-misc/hylafax/files/configure-gcc-3.4.patch29
3 files changed, 36 insertions, 2 deletions
diff --git a/net-misc/hylafax/ChangeLog b/net-misc/hylafax/ChangeLog
index b7bcf528f231..ddb1034cc7d5 100644
--- a/net-misc/hylafax/ChangeLog
+++ b/net-misc/hylafax/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/hylafax
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/ChangeLog,v 1.41 2004/10/25 22:07:11 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/ChangeLog,v 1.42 2004/10/25 22:18:40 nerdboy Exp $
+
+ 25 Oct 2004; Steve Arnold <nerdboy@gentoo.org>
+ +files/configure-gcc-3.4.patch:
+ added missing patch file for bug 66794
25 Oct 2004; Steve Arnold <nerdboy@gentoo.org> -hylafax-4.1.8-r1.ebuild,
-hylafax-4.1.8-r2.ebuild, -hylafax-4.1.8-r3.ebuild, -hylafax-4.1.8.ebuild,
diff --git a/net-misc/hylafax/Manifest b/net-misc/hylafax/Manifest
index 132217f648e3..0546a68242f7 100644
--- a/net-misc/hylafax/Manifest
+++ b/net-misc/hylafax/Manifest
@@ -1,8 +1,9 @@
-MD5 02d00c335e3a9324ba477d73bf5861e0 ChangeLog 8261
+MD5 1018d0c48317af5c524d35441f29444a ChangeLog 8386
MD5 d82acf1bcf0f7f9e181d6a2821292f2e metadata.xml 435
MD5 93b89855f1349b94b334cbe94ceafd0f hylafax-4.1.8-r4.ebuild 3187
MD5 d0badb69f937593c9fb6dbec1bcb4269 hylafax-4.2.0-r1.ebuild 3470
MD5 46bbae3c77d5651a20e606eb6228c159 files/99hylafax 62
+MD5 eab749cee07de1984c9756e6eb886df0 files/configure-gcc-3.4.patch 696
MD5 bc084d075b601d42fbd417b97a45f1b2 files/hylafax 3757
MD5 5f2f2e3fe04414f953d4010d32261318 files/hylafax-4.1.8-fPIC.patch 2086
MD5 ad3b0e7082e6e71ee6ba940ce1b6b071 files/hylafax-4.1.8-gcc-version.patch 520
diff --git a/net-misc/hylafax/files/configure-gcc-3.4.patch b/net-misc/hylafax/files/configure-gcc-3.4.patch
new file mode 100644
index 000000000000..60cc898b5897
--- /dev/null
+++ b/net-misc/hylafax/files/configure-gcc-3.4.patch
@@ -0,0 +1,29 @@
+--- configure.orig 2004-10-16 12:23:11.798429288 -0500
++++ configure 2004-10-16 12:27:04.419065576 -0500
+@@ -1590,11 +1590,24 @@
+ fi
+ done
+ }
+-CheckForLibrary strftime -lc || {
++
++CheckForLibrary_strftime()
++{
++ f=$1; shift
++ libs="$@";
++ cat>t.c<<EOF
++int t() { $f(0, 0, 0, 0); return 0; }
++int main(){ t(); return 0; }
++EOF
++ capture cat t.c
++ runMake t "t:; \${CCF} t.c $libs"
++}
++
++CheckForLibrary_strftime strftime -lc || {
+ #
+ # SCO has strftime in -lintl.
+ #
+- if CheckForLibrary strftime -lintl; then
++ if CheckForLibrary_strftime strftime -lintl; then
+ Note "Looks like -lintl is needed for strftime."
+ MACHDEPLIBS="$MACHDEPLIBS -lintl"
+ else