summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2010-06-03 05:24:27 +0000
committerdholland <dholland@pkgsrc.org>2010-06-03 05:24:27 +0000
commit7d45447f43807a5fbe461474574fdd96cf595ed5 (patch)
tree63ddca3a44ff66aa1335d48a04ddc120448eb43c /lang
parent739174ba90bbc2ff4904888ca940118ed801a63d (diff)
downloadpkgsrc-7d45447f43807a5fbe461474574fdd96cf595ed5.tar.gz
Add my patch from PR 35548, to fix the path buffer sizes.
Diffstat (limited to 'lang')
-rw-r--r--lang/inform/Makefile4
-rw-r--r--lang/inform/PLIST3
-rw-r--r--lang/inform/distinfo3
-rw-r--r--lang/inform/patches/patch-ab30
4 files changed, 36 insertions, 4 deletions
diff --git a/lang/inform/Makefile b/lang/inform/Makefile
index 3b4774662d0..2d64ac5e4eb 100644
--- a/lang/inform/Makefile
+++ b/lang/inform/Makefile
@@ -1,12 +1,14 @@
-# $NetBSD: Makefile,v 1.13 2009/05/19 08:59:19 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2010/06/03 05:24:27 dholland Exp $
DISTNAME= inform-6.31.1
+PKGREVISION= 1
CATEGORIES= lang
MASTER_SITES= http://mirror.ifarchive.org/if-archive/infocom/compilers/inform6/source/
MAINTAINER= nathanw@mit.edu
HOMEPAGE= http://www.inform-fiction.org/
COMMENT= Interactive fiction compiler (Z-Machine and Glulx)
+
LICENSE= no-profit
PKG_DESTDIR_SUPPORT= user-destdir
diff --git a/lang/inform/PLIST b/lang/inform/PLIST
index 7583ccf021c..adef2e2d24d 100644
--- a/lang/inform/PLIST
+++ b/lang/inform/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2009/06/14 20:34:13 joerg Exp $
+@comment $NetBSD: PLIST,v 1.10 2010/06/03 05:24:27 dholland Exp $
bin/inform
bin/inform-6.31
share/inform/6.31/include/AdHints.h
@@ -211,7 +211,6 @@ share/inform/manual/s29.html
share/inform/manual/s3.html
share/inform/manual/s30.html
share/inform/manual/s31.html
-share/inform/manual/s31.html
share/inform/manual/s32.html
share/inform/manual/s33.html
share/inform/manual/s34.html
diff --git a/lang/inform/distinfo b/lang/inform/distinfo
index 91be8d2511f..9fd13277a6a 100644
--- a/lang/inform/distinfo
+++ b/lang/inform/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.5 2006/07/27 06:50:36 wiz Exp $
+$NetBSD: distinfo,v 1.6 2010/06/03 05:24:27 dholland Exp $
SHA1 (inform-6.31.1.tar.gz) = 0c6c43536236ea09de689291fb90c1203f342de2
RMD160 (inform-6.31.1.tar.gz) = e3dc7f8c5d6b41dec42f7c8c0f4a59a5ff448f16
Size (inform-6.31.1.tar.gz) = 1947301 bytes
SHA1 (patch-aa) = 2f43e50548c7b2c566593d1fb79d173e189dcfcc
+SHA1 (patch-ab) = c4c3b5a97700b3bf7009909e85227a4af7b23a3e
diff --git a/lang/inform/patches/patch-ab b/lang/inform/patches/patch-ab
new file mode 100644
index 00000000000..550369a196a
--- /dev/null
+++ b/lang/inform/patches/patch-ab
@@ -0,0 +1,30 @@
+$NetBSD: patch-ab,v 1.3 2010/06/03 05:24:27 dholland Exp $
+
+Fix default path lengths too short for it to hold its own include path.
+
+--- src/header.h.dist 2007-02-04 18:15:15.000000000 -0500
++++ src/header.h 2007-02-04 18:17:15.000000000 -0500
+@@ -342,6 +342,7 @@
+ #define FN_SEP '/'
+ /* 5 */
+ #define Temporary_Directory "/tmp"
++#define PATHLEN 1024
+ #define INCLUDE_TASK_ID
+ #define _POSIX_C_SOURCE 199506L
+ #define _XOPEN_SOURCE 500
+@@ -403,6 +404,7 @@
+ #define FN_SEP '/'
+ /* 5 */
+ #define Temporary_Directory "/tmp"
++#define PATHLEN 1024
+ #define INCLUDE_TASK_ID
+ #ifdef MAIN_INFORM_FILE
+ static int32 unique_task_id(void)
+@@ -424,6 +426,7 @@
+ #define FN_SEP '/'
+ /* 5 */
+ #define Temporary_Directory "/tmp"
++#define PATHLEN 1024
+ #define INCLUDE_TASK_ID
+ #ifdef MAIN_INFORM_FILE
+ static int32 unique_task_id(void)