summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authordrochner <drochner>2006-12-15 19:31:46 +0000
committerdrochner <drochner>2006-12-15 19:31:46 +0000
commit7807d8797847b780a2def31a890f8a0db1e6a32b (patch)
tree7bcff88e15cb5149f5db7354b99800bf0c6a79ff /textproc
parent7bc4f5b6a80e771c4913cdae1ed1fba7cb08d794 (diff)
downloadpkgsrc-7807d8797847b780a2def31a890f8a0db1e6a32b.tar.gz
update to 0.35.1
changes: -Make regex patterns greedier, to avoid perl stack overflows -Add code to detect DATADIRNAME -Support older/non-GNU versions of diff when validating tests -Add new mode to support quoted text in any file -Fix the warning message for missing IT_PROG_INTLTOOL and error out
Diffstat (limited to 'textproc')
-rw-r--r--textproc/intltool/Makefile5
-rw-r--r--textproc/intltool/distinfo9
-rw-r--r--textproc/intltool/patches/patch-aa30
3 files changed, 6 insertions, 38 deletions
diff --git a/textproc/intltool/Makefile b/textproc/intltool/Makefile
index b547f47c9c7..fbafc5d2f28 100644
--- a/textproc/intltool/Makefile
+++ b/textproc/intltool/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.38 2006/11/05 17:06:43 joerg Exp $
+# $NetBSD: Makefile,v 1.39 2006/12/15 19:31:46 drochner Exp $
#
-DISTNAME= intltool-0.35.0
-PKGREVISION= 1
+DISTNAME= intltool-0.35.1
CATEGORIES= textproc devel gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/intltool/0.35/}
EXTRACT_SUFX= .tar.bz2
diff --git a/textproc/intltool/distinfo b/textproc/intltool/distinfo
index 58a01860e2e..e1aa097cd31 100644
--- a/textproc/intltool/distinfo
+++ b/textproc/intltool/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.20 2006/08/29 14:03:39 joerg Exp $
+$NetBSD: distinfo,v 1.21 2006/12/15 19:31:47 drochner Exp $
-SHA1 (intltool-0.35.0.tar.bz2) = 5e4e90e79696dbca1798753bd4135aa8556887f4
-RMD160 (intltool-0.35.0.tar.bz2) = 00cd68879d9743f52c03ca723f20ac0aab6e79e0
-Size (intltool-0.35.0.tar.bz2) = 129933 bytes
-SHA1 (patch-aa) = 8b28063597bd942b016d96ffc842197399ef818e
+SHA1 (intltool-0.35.1.tar.bz2) = 58bb12b63cd2e3d3ff2d5181391c53b0f34ee214
+RMD160 (intltool-0.35.1.tar.bz2) = 9cee72441e93df8c59b437ea89ad355235683520
+Size (intltool-0.35.1.tar.bz2) = 131076 bytes
diff --git a/textproc/intltool/patches/patch-aa b/textproc/intltool/patches/patch-aa
deleted file mode 100644
index 031a348ef6b..00000000000
--- a/textproc/intltool/patches/patch-aa
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-aa,v 1.6 2006/08/29 14:03:39 joerg Exp $
-
---- intltool-merge.in.in.orig 2006-08-28 10:58:43.000000000 +0200
-+++ intltool-merge.in.in
-@@ -415,7 +415,7 @@ sub create_translation_database
- {
- $nextfuzzy = 1 if /^#, fuzzy/;
-
-- if (/^msgid "((\\.|[^\\])*)"/ )
-+ if (/^msgid "((\\.|[^\\]+)*)"/ )
- {
- $translations{$lang, $msgid} = $msgstr if $inmsgstr && $msgid && $msgstr;
- $msgid = "";
-@@ -431,14 +431,14 @@ sub create_translation_database
- $nextfuzzy = 0;
- }
-
-- if (/^msgstr "((\\.|[^\\])*)"/)
-+ if (/^msgstr "((\\.|[^\\]+)*)"/)
- {
- $msgstr = unescape_po_string($1);
- $inmsgstr = 1;
- $inmsgid = 0;
- }
-
-- if (/^"((\\.|[^\\])*)"/)
-+ if (/^"((\\.|[^\\]+)*)"/)
- {
- $msgid .= unescape_po_string($1) if $inmsgid;
- $msgstr .= unescape_po_string($1) if $inmsgstr;