aboutsummaryrefslogtreecommitdiff
path: root/textproc/rxp
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2001-03-10 04:59:24 +0000
committerKris Kennaway <kris@FreeBSD.org>2001-03-10 04:59:24 +0000
commitd10957ba2985c5ecd759e1456472dccb508f1d33 (patch)
treedbc99cd9ac9de26dd6457b91e4469db7c7ce5e16 /textproc/rxp
parent3866c9a4ea08480cda7f914ee7a1cee0a623dc44 (diff)
downloadports-d10957ba2985c5ecd759e1456472dccb508f1d33.tar.gz
ports-d10957ba2985c5ecd759e1456472dccb508f1d33.zip
Notes
Diffstat (limited to 'textproc/rxp')
-rw-r--r--textproc/rxp/Makefile2
-rw-r--r--textproc/rxp/distinfo2
-rw-r--r--textproc/rxp/files/patch-aa15
3 files changed, 17 insertions, 2 deletions
diff --git a/textproc/rxp/Makefile b/textproc/rxp/Makefile
index 3df57dd958d5..9b0c62e9ba91 100644
--- a/textproc/rxp/Makefile
+++ b/textproc/rxp/Makefile
@@ -7,9 +7,9 @@
PORTNAME= rxp
PORTVERSION= 1.2.3
+PORTREVISION= 1
CATEGORIES= textproc
MASTER_SITES= ftp://ftp.cogsci.ed.ac.uk/pub/richard/
-DISTFILES= rxp.tar.gz
MAINTAINER= jkoshy@freebsd.org
diff --git a/textproc/rxp/distinfo b/textproc/rxp/distinfo
index ba8fde1c4163..d2aeb8dfe461 100644
--- a/textproc/rxp/distinfo
+++ b/textproc/rxp/distinfo
@@ -1 +1 @@
-MD5 (rxp.tar.gz) = b7c230a3053eb91d1c0a746942443cd7
+MD5 (rxp-1.2.3.tar.gz) = b7c230a3053eb91d1c0a746942443cd7
diff --git a/textproc/rxp/files/patch-aa b/textproc/rxp/files/patch-aa
new file mode 100644
index 000000000000..70007f28fd28
--- /dev/null
+++ b/textproc/rxp/files/patch-aa
@@ -0,0 +1,15 @@
+--- Makefile.orig Fri Mar 9 20:55:41 2001
++++ Makefile Fri Mar 9 20:55:58 2001
+@@ -3,9 +3,10 @@
+ CHAR_SIZE=16
+
+ DEBUG= -g
+-CC= gcc
++CC?= gcc
+ GCCFLAGS= -Wall -ansi -pedantic
+-CFLAGS= $(GCCFLAGS) $(DEBUG) -O -DCHAR_SIZE=$(CHAR_SIZE)
++CFLAGS?= -O
++CFLAGS+= $(GCCFLAGS) $(DEBUG) -DCHAR_SIZE=$(CHAR_SIZE)
+ LDFLAGS= $(DEBUG)
+
+ # You may well have to change this line. Just "LIBS=" will probably work.