diff options
author | rene <rene@FreeBSD.org> | 2010-11-14 23:44:43 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2010-11-14 23:44:43 +0800 |
commit | 83a9d3a553cf26586872f4d755f22c5757491e23 (patch) | |
tree | 2a4484ab532755220bd16d52203733cfa42ef7f9 /mail/fetchmail | |
parent | 4855dbdfbdaf090eafb323638b39ce3619c656d9 (diff) | |
download | freebsd-ports-gnome-83a9d3a553cf26586872f4d755f22c5757491e23.tar.gz freebsd-ports-gnome-83a9d3a553cf26586872f4d755f22c5757491e23.tar.zst freebsd-ports-gnome-83a9d3a553cf26586872f4d755f22c5757491e23.zip |
Fix build by skipping the validation of the XHTML 1.1 document
Mailbox-Names-UTF7.html
PR: ports/152067
Submitted by: Matthias Andree [matthias.andree gmx.de]
Approved by: maintainer
Diffstat (limited to 'mail/fetchmail')
-rw-r--r-- | mail/fetchmail/distinfo | 1 | ||||
-rw-r--r-- | mail/fetchmail/files/patch-de5f30df | 28 |
2 files changed, 28 insertions, 1 deletions
diff --git a/mail/fetchmail/distinfo b/mail/fetchmail/distinfo index d094d82c2e6b..217423798fbd 100644 --- a/mail/fetchmail/distinfo +++ b/mail/fetchmail/distinfo @@ -1,3 +1,2 @@ -MD5 (fetchmail-6.3.18.tar.bz2) = e01377cf2751465c509c39029e8da92b SHA256 (fetchmail-6.3.18.tar.bz2) = cd916c8409bfbf6c869a2892b429f6d6cc6270072a138356c091c2992474faaf SIZE (fetchmail-6.3.18.tar.bz2) = 1683949 diff --git a/mail/fetchmail/files/patch-de5f30df b/mail/fetchmail/files/patch-de5f30df new file mode 100644 index 000000000000..451e8a4fe821 --- /dev/null +++ b/mail/fetchmail/files/patch-de5f30df @@ -0,0 +1,28 @@ +From de5f30df51d15f62717ababcdde98689b2203730 Mon Sep 17 00:00:00 2001 +From: Matthias Andree <matthias.andree@gmx.de> +Date: Sat, 6 Nov 2010 11:44:34 +0100 +Subject: [PATCH] Skip validation asciidoc-generated file. + +--- + t.validate-xhtml | 5 ++++- + 1 files changed, 4 insertions(+), 1 deletions(-) + +diff --git a/t.validate-xhtml b/t.validate-xhtml +index bf55f4f..a64399a 100755 +--- a/t.validate-xhtml ++++ b/t.validate-xhtml +@@ -16,7 +16,10 @@ cat - <<'_EOF' | xmllint 2>/dev/null --nonet --postvalid --noout - || exit 77 + _EOF + + for i in "${srcdir}"/*.html ; do +- case "$i" in */fetchmail-man.html) continue ;; esac ++ case "$i" in ++ */fetchmail-man.html) continue ;; ++ */Mailbox-Names-UTF7.html) continue ;; ++ esac + xmllint --postvalid --noout "$i" || { e=1 ; fail="$i${fail:+" "}$fail" ; } + done + if [ $e != 0 ] ; then +-- +1.6.1 + |