summaryrefslogtreecommitdiff
path: root/lang/nqc
diff options
context:
space:
mode:
authorKelly Yancey <kbyanc@FreeBSD.org>2001-05-04 05:57:04 +0000
committerKelly Yancey <kbyanc@FreeBSD.org>2001-05-04 05:57:04 +0000
commite2bcb36091ddb8d1ebf00605dc90d9a5e733ef7d (patch)
tree6cc3cc9ea1c51c5ffbcf2b4ba774b94b17ab4886 /lang/nqc
parentFix a typo in the URL. (diff)
Update nqc port to version 2.3r1.
PR: 26923 (with slight modifications) Submitted by: "Stephen J. Roznowski" <sjr@home.com>
Notes
Notes: svn path=/head/; revision=42237
Diffstat (limited to 'lang/nqc')
-rw-r--r--lang/nqc/Makefile2
-rw-r--r--lang/nqc/distinfo2
-rw-r--r--lang/nqc/files/patch-aa25
3 files changed, 17 insertions, 12 deletions
diff --git a/lang/nqc/Makefile b/lang/nqc/Makefile
index 17b7c58c0673..41fcd7508d4b 100644
--- a/lang/nqc/Makefile
+++ b/lang/nqc/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= nqc
-PORTVERSION= 2.2.r2
+PORTVERSION= 2.3.r1
CATEGORIES= lang
MASTER_SITES= http://www.enteract.com/~dbaum/nqc/release/
diff --git a/lang/nqc/distinfo b/lang/nqc/distinfo
index edb5140a51fd..eb4941b390ab 100644
--- a/lang/nqc/distinfo
+++ b/lang/nqc/distinfo
@@ -1 +1 @@
-MD5 (nqc-2.2.r2.tar.gz) = d315a4c36227923f2c010ab8e38df083
+MD5 (nqc-2.3.r1.tar.gz) = cba9619516329732933ab8bdc753dc93
diff --git a/lang/nqc/files/patch-aa b/lang/nqc/files/patch-aa
index 99a4baa378b8..0c0e5d26d923 100644
--- a/lang/nqc/files/patch-aa
+++ b/lang/nqc/files/patch-aa
@@ -1,5 +1,5 @@
---- Makefile.orig Sun Oct 22 11:26:06 2000
-+++ Makefile Thu Nov 9 01:29:29 2000
+--- Makefile.orig Sun Apr 15 17:56:31 2001
++++ Makefile Thu May 3 22:43:42 2001
@@ -28,14 +28,14 @@
#
# Pick your C++ compiler.
@@ -18,7 +18,14 @@
#
# Define the FLEX processor
-@@ -47,24 +47,25 @@
+@@ -45,30 +45,30 @@
+
+ # Link in any necessary C++ libraries
+ #
+-# LIBS = -lstdc++
++LIBS = -lstdc++
+
+ #
# Use this to define the default device driver name
# for serial port connections.
#
@@ -40,7 +47,6 @@
-MKDIR=mkdir
-MV=mv -f
-RM=rm -f
-+LD?=$(LD)
+CP?=cp -f
+MKDIR?=mkdir
+MV?=mv -f
@@ -53,17 +59,16 @@
OBJ = $(NQCOBJ) $(COBJ) $(RCXOBJ) $(POBJ)
-@@ -106,10 +107,10 @@
+@@ -111,10 +111,10 @@
$(MKDIR) bin
bin/nqc : compiler/parse.cpp $(OBJ)
-- $(LD) -o $@ $(OBJ)
-+ $(CC) -o $@ $(OBJ) -lstdc++
+- $(LD) -o $@ $(OBJ) $(LIBS)
++ $(CC) -o $@ $(OBJ) $(LIBS)
--bin/mkdata : mkdata/mkdata.cpp nqc/SRecord.cpp
+ bin/mkdata : mkdata/mkdata.cpp nqc/SRecord.cpp
- $(LD) -o bin/mkdata -Inqc/ -Iplatform/ mkdata/mkdata.cpp nqc/SRecord.cpp
-+bin/mkdata : mkdata/mkdata.o nqc/SRecord.o
-+ $(CC) -o bin/mkdata mkdata/mkdata.o nqc/SRecord.o -lstdc++
++ $(CC) -o bin/mkdata -Inqc/ -Iplatform/ mkdata/mkdata.cpp nqc/SRecord.cpp
#
# clean up stuff