diff options
author | wiz <wiz> | 2012-12-09 15:21:48 +0000 |
---|---|---|
committer | wiz <wiz> | 2012-12-09 15:21:48 +0000 |
commit | 9a3899f45ee32b05c45908990339169f08cc9532 (patch) | |
tree | 6739081da4fb6617ba43af883bfed5508d9a2133 /fonts | |
parent | e8ddfdc20924a664665d726ff123fa4e09b04307 (diff) | |
download | pkgsrc-9a3899f45ee32b05c45908990339169f08cc9532.tar.gz |
Update to 1.36:
Version 1.36 29.May.2010
* Several minor cleanups.
Version 1.35 22.Oct.2009
* Don't use "getline" as a symbol (reported by Karl Berry and
C.M. Connelly).
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/t1utils/Makefile | 4 | ||||
-rw-r--r-- | fonts/t1utils/distinfo | 9 | ||||
-rw-r--r-- | fonts/t1utils/patches/patch-aa | 33 |
3 files changed, 6 insertions, 40 deletions
diff --git a/fonts/t1utils/Makefile b/fonts/t1utils/Makefile index 995f5500627..64b66904ce5 100644 --- a/fonts/t1utils/Makefile +++ b/fonts/t1utils/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2012/10/03 18:28:30 asau Exp $ +# $NetBSD: Makefile,v 1.11 2012/12/09 15:21:48 wiz Exp $ # -DISTNAME= t1utils-1.34 +DISTNAME= t1utils-1.36 CATEGORIES= fonts converters MASTER_SITES= http://www.lcdf.org/~eddietwo/type/ diff --git a/fonts/t1utils/distinfo b/fonts/t1utils/distinfo index bf8e1101831..5cbec694102 100644 --- a/fonts/t1utils/distinfo +++ b/fonts/t1utils/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.7 2009/08/11 14:59:09 taca Exp $ +$NetBSD: distinfo,v 1.8 2012/12/09 15:21:48 wiz Exp $ -SHA1 (t1utils-1.34.tar.gz) = a5b174a1d132436c410edf514ac74a6f4ae258e2 -RMD160 (t1utils-1.34.tar.gz) = 325b6be1267d570acf56cd850323aa12908e736e -Size (t1utils-1.34.tar.gz) = 155425 bytes -SHA1 (patch-aa) = 71199d4bbee28360c55eca739227f85e4ed7c36e +SHA1 (t1utils-1.36.tar.gz) = 474143e828eed4755fd51bbcbde1cb906114cadb +RMD160 (t1utils-1.36.tar.gz) = 77ef2611a2fdd039e7972df2586bc3072d4beb09 +Size (t1utils-1.36.tar.gz) = 164812 bytes diff --git a/fonts/t1utils/patches/patch-aa b/fonts/t1utils/patches/patch-aa deleted file mode 100644 index 15532b6cf6e..00000000000 --- a/fonts/t1utils/patches/patch-aa +++ /dev/null @@ -1,33 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2009/08/11 14:59:09 taca Exp $ - -Avoid confliction with getline(3). - ---- t1asm.c.orig 2008-03-02 02:59:11.000000000 +0900 -+++ t1asm.c -@@ -280,7 +280,7 @@ static int check_line_charstring() - the newline is put into line[]. When terminated by '{', the '{' is not put - into line[], and the flag start_charstring is set to 1. */ - --static void getline() -+static void get_line() - { - int c; - char *p = line; -@@ -721,7 +721,7 @@ particular purpose.\n"); - without /Subrs sections and provided a patch. */ - - while (!feof(ifp) && !ferror(ifp)) { -- getline(); -+ get_line(); - - if (!ever_active) { - if (strncmp(line, "currentfile eexec", 17) == 0 && isspace(line[17])) { -@@ -792,7 +792,7 @@ particular purpose.\n"); - - /* There may be additional code. */ - while (!feof(ifp) && !ferror(ifp)) { -- getline(); -+ get_line(); - eexec_string(line); - } - |