aboutsummaryrefslogtreecommitdiff
path: root/devel/cxref
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2003-07-11 17:44:16 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2003-07-11 17:44:16 +0000
commitdfe897dc731168995d1482be81cf34e13b051732 (patch)
tree547a7432eb5f644d61f1382b11c817e11f6364ea /devel/cxref
parent1bf2c06b3cec3704878deebbae7f05ccc106a9e8 (diff)
downloadports-dfe897dc731168995d1482be81cf34e13b051732.tar.gz
ports-dfe897dc731168995d1482be81cf34e13b051732.zip
Notes
Diffstat (limited to 'devel/cxref')
-rw-r--r--devel/cxref/Makefile4
-rw-r--r--devel/cxref/distinfo2
-rw-r--r--devel/cxref/files/patch-af16
3 files changed, 3 insertions, 19 deletions
diff --git a/devel/cxref/Makefile b/devel/cxref/Makefile
index c957a2322b2a..83105a60037c 100644
--- a/devel/cxref/Makefile
+++ b/devel/cxref/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= cxref
-PORTVERSION= 1.5d
-PORTREVISION= 1
+PORTVERSION= 1.5e
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SUNSITE} \
ftp://ftp.demon.co.uk/pub/unix/tools/
@@ -19,6 +18,7 @@ COMMENT= C program cross-referencing & documentation tool
USE_GMAKE= yes
GNU_CONFIGURE= yes
+CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= cxref.1 cxref-query.1
diff --git a/devel/cxref/distinfo b/devel/cxref/distinfo
index 3479d254e541..2e7d1e3d987d 100644
--- a/devel/cxref/distinfo
+++ b/devel/cxref/distinfo
@@ -1 +1 @@
-MD5 (cxref-1.5d.tgz) = 1eddc07f124e129a863233e3aa7da857
+MD5 (cxref-1.5e.tgz) = 95d6055615f2fdefb39a2647ac70702f
diff --git a/devel/cxref/files/patch-af b/devel/cxref/files/patch-af
deleted file mode 100644
index e01cfd9cfe09..000000000000
--- a/devel/cxref/files/patch-af
+++ /dev/null
@@ -1,16 +0,0 @@
---- comment.c.orig Tue Nov 16 20:11:38 1999
-+++ comment.c Tue Jan 14 16:17:17 2003
-@@ -158,8 +158,11 @@
-
- if(comment)
- {
-- malloc_comment=Realloc(malloc_comment,strlen(comment)+1);
-- strcpy(malloc_comment,comment);
-+ if(malloc_comment != comment)
-+ {
-+ malloc_comment=Realloc(malloc_comment,strlen(comment)+1);
-+ strcpy(malloc_comment,comment);
-+ }
- current_comment=malloc_comment;
- }
- else