From bd83aa086ae2ec03feb3a84311778a91375add11 Mon Sep 17 00:00:00 2001 From: hubertf Date: Thu, 29 Mar 2001 01:02:59 +0000 Subject: Update to 1.2.1nb1: Add patch sent in by Kogule, Ryo on tech-pkg so this does not crash on NetBSD/mac68k. --- textproc/jade/Makefile | 4 ++-- textproc/jade/files/patch-sum | 7 ++++--- textproc/jade/patches/patch-ab | 14 ++++++++++++++ 3 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 textproc/jade/patches/patch-ab (limited to 'textproc/jade') diff --git a/textproc/jade/Makefile b/textproc/jade/Makefile index 45803287f57..9860b88cc7b 100644 --- a/textproc/jade/Makefile +++ b/textproc/jade/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2001/02/25 04:18:17 hubertf Exp $ +# $NetBSD: Makefile,v 1.5 2001/03/29 01:02:59 hubertf Exp $ # FreeBSD Id: Makefile,v 1.15 1999/01/31 11:15:57 dirk Exp # -DISTNAME= jade-1.2.1 +DISTNAME= jade-1.2.1nb1 CATEGORIES= textproc MASTER_SITES= ftp://ftp.jclark.com/pub/jade/ \ ftp://ftp.funet.fi/pub/mirrors/ftp.jclark.com/pub/jade/ \ diff --git a/textproc/jade/files/patch-sum b/textproc/jade/files/patch-sum index 05ed2ff46ff..2f40894587e 100644 --- a/textproc/jade/files/patch-sum +++ b/textproc/jade/files/patch-sum @@ -1,4 +1,5 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 14:23:13 agc Exp $ +$NetBSD: patch-sum,v 1.2 2001/03/29 01:02:59 hubertf Exp $ -MD5 (patch-aa) = c07d9c985e2c808fac5aeab6f08bdf6c -MD5 (patch-ac) = bace211c00987fab0d6e6559df8ce127 +SHA1 (patch-aa) = a7a500f614f752bf889df4005751fde8550443c0 +SHA1 (patch-ab) = 1742175ec89ea8e796b4e874a488225850cf78e1 +SHA1 (patch-ac) = c96ca44b40bbcc9c588dfe40045f4d386e32998d diff --git a/textproc/jade/patches/patch-ab b/textproc/jade/patches/patch-ab new file mode 100644 index 00000000000..62c97e042cf --- /dev/null +++ b/textproc/jade/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2001/03/29 01:02:59 hubertf Exp $ + +--- style/Interpreter.cxx.orig Thu Oct 1 07:14:54 1998 ++++ style/Interpreter.cxx +@@ -184,7 +184,8 @@ + }; + size_t nUnits = dsssl2() ? SIZEOF(units) : SIZEOF(units) - 1; + for (size_t i = 0; i < nUnits; i++) { +- Unit *unit = lookupUnit(makeStringC(units[i].name)); ++ StringC temp = makeStringC(units[i].name); /* temp var to work around */ ++ Unit *unit = lookupUnit(temp); /* compiler prob(?) */ + long n = unitsPerInch_ * units[i].numer; + if (n % units[i].denom == 0) + unit->setValue(long(n / units[i].denom)); -- cgit v1.2.3