diff options
author | steve <steve@FreeBSD.org> | 1999-09-27 02:36:51 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-09-27 02:36:51 +0000 |
commit | 309f53bf2fdd282101a0c9661f601b1a12e25d78 (patch) | |
tree | 922b7e5f55ab67d233deda57585126f402c87a15 /devel/cxref | |
parent | eeef4dd062df8dc3f966b6f92d0379b6296a6ad1 (diff) | |
download | FreeBSD-ports-309f53bf2fdd282101a0c9661f601b1a12e25d78.zip FreeBSD-ports-309f53bf2fdd282101a0c9661f601b1a12e25d78.tar.gz |
Update to version 1.5a and add the WWW site to the DESCR.
PR: 13599
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'devel/cxref')
-rw-r--r-- | devel/cxref/Makefile | 9 | ||||
-rw-r--r-- | devel/cxref/distinfo | 2 | ||||
-rw-r--r-- | devel/cxref/files/patch-ad | 23 | ||||
-rw-r--r-- | devel/cxref/pkg-descr | 2 |
4 files changed, 32 insertions, 4 deletions
diff --git a/devel/cxref/Makefile b/devel/cxref/Makefile index d102b65..db866a6 100644 --- a/devel/cxref/Makefile +++ b/devel/cxref/Makefile @@ -1,19 +1,22 @@ # New ports collection makefile for: cxref -# Version required: 1.4b +# Version required: 1.5a # Date created: 23 October 1996 # Whom: Thomas Gellekum <tg@freebsd.org> # # $FreeBSD$ # -DISTNAME= cxref-1.4b +DISTNAME= cxref-1.5a CATEGORIES= devel -MASTER_SITES= ftp://ftp.demon.co.uk/pub/unix/tools/ +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + ftp://ftp.demon.co.uk/pub/unix/tools/ +MASTER_SITE_SUBDIR= devel/lang/c EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org USE_GMAKE= yes +GNU_CONFIGURE= yes ALL_TARGET= cxref-inst cxref-query MAN1= cxref.1 cxref-query.1 diff --git a/devel/cxref/distinfo b/devel/cxref/distinfo index c12333c..f0127a8 100644 --- a/devel/cxref/distinfo +++ b/devel/cxref/distinfo @@ -1 +1 @@ -MD5 (cxref-1.4b.tgz) = 060eb06dc6c03221ae265bab5852e80e +MD5 (cxref-1.5a.tgz) = ff487b175d44b5eae21942d958a02004 diff --git a/devel/cxref/files/patch-ad b/devel/cxref/files/patch-ad new file mode 100644 index 0000000..07e1c79 --- /dev/null +++ b/devel/cxref/files/patch-ad @@ -0,0 +1,23 @@ +--- Makefile.in.orig Fri May 21 03:48:04 1999 ++++ Makefile.in Sun Sep 5 15:41:44 1999 +@@ -115,14 +115,13 @@ + + ######## + +-install : programs +- [ -d $(bindir) ] || $(INSTALL) -d $(bindir) +- $(INSTALL) -m 755 cxref-inst $(bindir)/cxref +- $(INSTALL) -m 755 cxref-cc $(bindir) +- [ -d $(mandir)/man1 ] || $(INSTALL) -d $(mandir)/man1 ++install : cxref-query cxref-inst ++ $(INSTALL) -c -m 755 cxref-inst $(bindir)/cxref ++ $(INSTALL) -c -m 755 query/cxref-query $(bindir) ++ [ ! -x cpp/cxref-cpp ] || $(INSTALL) -m 755 cpp/cxref-cpp $(bindir) + $(INSTALL) -m 644 README.man $(mandir)/man1/cxref.1 +- cd cpp && $(MAKE) install +- cd query && $(MAKE) install ++ $(INSTALL) -m 644 query/README.man $(mandir)/man1/cxref-query.1 ++ [ ! -x cpp/cxref-cpp ] || $(INSTALL) -m 644 cpp/README.man $(mandir)/man1/cxref-cpp.1 + + install-win32 : programs + [ -d $(bindir) ] || $(INSTALL) -d $(bindir) diff --git a/devel/cxref/pkg-descr b/devel/cxref/pkg-descr index d626069..5bec0f5 100644 --- a/devel/cxref/pkg-descr +++ b/devel/cxref/pkg-descr @@ -10,3 +10,5 @@ The cross referencing includes lists of functions called, callers of each function, usage of global variables, header file inclusion, macro definitions and type definitions. Works for ANSI C, including a few gcc extensions. + +WWW: http://www.gedanken.demon.co.uk/cxref/ |