summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Arnold <nerdboy@gentoo.org>2007-01-28 23:59:35 +0000
committerSteve Arnold <nerdboy@gentoo.org>2007-01-28 23:59:35 +0000
commit1357c526d8a4faf95a4378e723cb32c28a84ca15 (patch)
tree2791b13d6c1ae445905766d3ae980ec5f2f0aa4c /net-misc/hylafax/files
parentFixup some exported ioctls. (diff)
downloadgentoo-2-1357c526d8a4faf95a4378e723cb32c28a84ca15.tar.gz
gentoo-2-1357c526d8a4faf95a4378e723cb32c28a84ca15.tar.bz2
gentoo-2-1357c526d8a4faf95a4378e723cb32c28a84ca15.zip
added latest upstream version and removed oldest stale version
(Portage version: 2.1.2-r4)
Diffstat (limited to 'net-misc/hylafax/files')
-rw-r--r--net-misc/hylafax/files/digest-hylafax-4.2.3-r13
-rw-r--r--net-misc/hylafax/files/digest-hylafax-4.3.13
-rw-r--r--net-misc/hylafax/files/hylafax-4.2.3-faxrcvd-eval-vulnerability.patch21
-rw-r--r--net-misc/hylafax/files/hylafax-4.2.3-notify-eval-vulnerability.patch46
-rw-r--r--net-misc/hylafax/files/hylafax-4.2.3-tiff_version.patch22
5 files changed, 3 insertions, 92 deletions
diff --git a/net-misc/hylafax/files/digest-hylafax-4.2.3-r1 b/net-misc/hylafax/files/digest-hylafax-4.2.3-r1
deleted file mode 100644
index 4bc93d4b1ed6..000000000000
--- a/net-misc/hylafax/files/digest-hylafax-4.2.3-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 e72f381a766c58c692afdf42326dc4e6 hylafax-4.2.3.tar.gz 1449095
-RMD160 f06d3e1c72c0ba5a082fee4a74830cf72b73d7dd hylafax-4.2.3.tar.gz 1449095
-SHA256 47e6643b93353eb42b605ff745fd7e0f97c2834e601e2612566f1f66eaa6d04f hylafax-4.2.3.tar.gz 1449095
diff --git a/net-misc/hylafax/files/digest-hylafax-4.3.1 b/net-misc/hylafax/files/digest-hylafax-4.3.1
new file mode 100644
index 000000000000..8ccfe404e76e
--- /dev/null
+++ b/net-misc/hylafax/files/digest-hylafax-4.3.1
@@ -0,0 +1,3 @@
+MD5 edd50d92a598be13a985b3b94d280022 hylafax-4.3.1.tar.gz 1498444
+RMD160 1a29d43a05793ec4185c96ca16698268ae3f7c9b hylafax-4.3.1.tar.gz 1498444
+SHA256 b777c0d8f1f858f3c86f91f9ae4fde9246646ac9e753154b969cb7c3a49947ab hylafax-4.3.1.tar.gz 1498444
diff --git a/net-misc/hylafax/files/hylafax-4.2.3-faxrcvd-eval-vulnerability.patch b/net-misc/hylafax/files/hylafax-4.2.3-faxrcvd-eval-vulnerability.patch
deleted file mode 100644
index 2f9642d2ba4e..000000000000
--- a/net-misc/hylafax/files/hylafax-4.2.3-faxrcvd-eval-vulnerability.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: util/faxrcvd.sh.in
-===================================================================
-RCS file: /cvsroot/hylafax/util/faxrcvd.sh.in,v
-retrieving revision 1.25
-diff -u -r1.25 faxrcvd.sh.in
---- util/faxrcvd.sh.in 2005/07/18 19:02:49 1.25
-+++ util/faxrcvd.sh.in 2005/12/16 23:23:34
-@@ -103,7 +103,12 @@
- MSG="$1"; shift;
- COUNT=1
- while [ $# -ge 1 ]; do
-- eval "CALLID$COUNT=\"$1\""
-+ # In shell scripts, there are no special characters in hard-quoted
-+ # strings (quoted with (')). Single-quotes can't even be escaped
-+ # inside such strings and must be put outside of them. We thus replace
-+ # (') with ('\'') which terminates the current string, adds a single
-+ # quote and starts a new string.
-+ eval "CALLID$COUNT='`echo $1 | $SED -e "s/'/'\\\\\''/g"`'"
- shift
- COUNT=`expr $COUNT + 1`
- done
diff --git a/net-misc/hylafax/files/hylafax-4.2.3-notify-eval-vulnerability.patch b/net-misc/hylafax/files/hylafax-4.2.3-notify-eval-vulnerability.patch
deleted file mode 100644
index ce6ef33e9ee1..000000000000
--- a/net-misc/hylafax/files/hylafax-4.2.3-notify-eval-vulnerability.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Index: util/notify.sh.in
-===================================================================
-RCS file: /cvsroot/hylafax/util/notify.sh.in,v
-retrieving revision 1.17
-diff -u -r1.17 notify.sh.in
---- util/notify.sh.in 2005/09/05 23:26:03 1.17
-+++ util/notify.sh.in 2005/12/16 23:23:19
-@@ -171,8 +171,18 @@
- eval `($AWK -F: '
- function p(varname,val)
- {
-+ # In shell scripts, there are no special characters in hard-quoted
-+ # strings (quoted with (')). Single-quotes can't even be escaped
-+ # inside such strings and must be put outside of them. We thus replace
-+ # (') with ('\'') which terminates the current string, adds a single
-+ # quote and starts a new string.
-+ gsub(/\\047/, "\047\\\\\047\047", val);
-+ # New lines in eval could cause problems so we escape them. As with
-+ # single quotes above, we must first close the current string, add
-+ # the escaped new line (double quoted) and start a new string.
-+ gsub(/\n/, "\047\042\\\\n\042\047", val);
- # print out variable name and value so we can eval it in the shell
-- printf "%s=\"%s\"\n",varname,val
-+ printf "%s=\\047%s\\047\n",varname,val
- }
- BEGIN {
- nfiles = 0;
-@@ -206,16 +216,9 @@
- /^jobtype/ { p("jobtype", $2); }
- # status needs to be used in the shell as faxstatus since status is reserved word
- /^status/ { status = $0; sub("status:", "", status);
-- if (status ~ /\\\\$/) {
-- sub(/\\\\$/, "\\\\n", status);
-- while (getline > 0) {
-+ while ($0 ~ /\\\\$/ && getline > 0) {
-+ sub(/\\\\$/, "\\n", status);
- status = status $0;
-- gsub(/\*/,"",status);
-- sub(/\\\\$/, "\\\\n", status);
-- if ($0 !~ /\\\\$/)
-- break;
-- }
-- gsub(/\`/, "", status);
- } p("faxstatus", status);
- }
- /^resolution/ { p("resolution", $2); }
diff --git a/net-misc/hylafax/files/hylafax-4.2.3-tiff_version.patch b/net-misc/hylafax/files/hylafax-4.2.3-tiff_version.patch
deleted file mode 100644
index 22314687b9ba..000000000000
--- a/net-misc/hylafax/files/hylafax-4.2.3-tiff_version.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- configure.orig 2006-05-03 23:16:26.000000000 -0700
-+++ configure 2006-05-03 23:18:09.000000000 -0700
-@@ -2418,7 +2418,7 @@
- if [ ${header_ver} -ge 19960307 ]; then
- if [ "${lib_ver}" = "3.4" ]; then
- tiff_runlen_t="uint16"
-- elif [ "${lib_ver}" = "3.5" -o "${lib_ver}" = "3.6" -o "${lib_ver}" = "3.7" ]; then
-+ elif [ "${lib_ver}" = "3.6" -o "${lib_ver}" = "3.7" -o "${lib_ver}" = "3.8" ]; then
- tiff_runlen_t="uint32"
- fi
- fi
-@@ -2455,8 +2455,8 @@
-
- Incompatible TIFF Library.
-
--HylaFAX ${VERSION} requires TIFF software distribution ver 3.4, 3.5,
--3.6, or 3.7. If you do not have up to date TIFF software on your system
-+HylaFAX ${VERSION} requires TIFF software distribution ver 3.5, 3.6,
-+3.7, or 3.8. If you do not have up to date TIFF software on your system
- then you can retrieve it from the location where you obtained this software.
- The Home Page for version 3.5 and later is http://www.libtiff.org
- EOF