diff options
author | kris <kris@FreeBSD.org> | 2001-03-10 12:59:24 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-03-10 12:59:24 +0800 |
commit | 54b7f0512fddb0346a6ff924e9c058e14653d1bb (patch) | |
tree | a9a34e6458d510ae6564a309efb32b6c160c0631 /textproc | |
parent | 378de120f97fb06c5c5898867829abc14a9c769f (diff) | |
download | freebsd-ports-gnome-54b7f0512fddb0346a6ff924e9c058e14653d1bb.tar.gz freebsd-ports-gnome-54b7f0512fddb0346a6ff924e9c058e14653d1bb.tar.zst freebsd-ports-gnome-54b7f0512fddb0346a6ff924e9c058e14653d1bb.zip |
Switch to using a versioned distfile - the non-versioned one currently
points to a newer beta release. Respect CFLAGS and bump PORTREVISION.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/rxp/Makefile | 2 | ||||
-rw-r--r-- | textproc/rxp/distinfo | 2 | ||||
-rw-r--r-- | textproc/rxp/files/patch-aa | 15 |
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. |