Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Nov 2001 19:25:17 +0200
From:      Peter Pentchev <roam@ringlet.net>
To:        Joseph Koshy <jkoshy@FreeBSD.org>
Cc:        ports@FreeBSD.org
Subject:   devel/ctags FreeBSD port update to 5.1
Message-ID:  <20011107192517.A19049@straylight.oblivion.bg>

next in thread | raw e-mail | index | archive | help
Hi,

ctags 5.1 is out :)  Attached is a patch that updates the port
to that version and installs the new readtags.h and readtags.o
files, so that external programs can read tag files.  Or should
we wait until the authors make readtags into a library?

NB: this port update adds files/patch-ab.

G'luck,
Peter

-- 
I had to translate this sentence into English because I could not read the original Sanskrit.

Index: ports/devel/ctags/Makefile
===================================================================
RCS file: /home/ncvs/ports/devel/ctags/Makefile,v
retrieving revision 1.17
diff -u -r1.17 Makefile
--- ports/devel/ctags/Makefile	13 Aug 2001 11:47:38 -0000	1.17
+++ ports/devel/ctags/Makefile	7 Nov 2001 17:21:08 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	ctags
-PORTVERSION=	5.0.1
+PORTVERSION=	5.1
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
 		${MASTER_SITE_LOCAL}
@@ -22,5 +22,8 @@
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/ctags ${PREFIX}/bin/exctags
 	${INSTALL_MAN} ${WRKSRC}/ctags.1 ${PREFIX}/man/man1/exctags.1
+	${MKDIR} ${PREFIX}/include/ctags ${PREFIX}/lib/ctags
+	${INSTALL_DATA} ${WRKSRC}/readtags.h ${PREFIX}/include/ctags/
+	${INSTALL_DATA} ${WRKSRC}/readtags.o ${PREFIX}/lib/ctags/
 
 .include <bsd.port.mk>
Index: ports/devel/ctags/distinfo
===================================================================
RCS file: /home/ncvs/ports/devel/ctags/distinfo,v
retrieving revision 1.8
diff -u -r1.8 distinfo
--- ports/devel/ctags/distinfo	25 Apr 2001 03:41:28 -0000	1.8
+++ ports/devel/ctags/distinfo	7 Nov 2001 17:21:08 -0000
@@ -1 +1 @@
-MD5 (ctags-5.0.1.tar.gz) = 1d976ed374389143555da4fb1da31485
+MD5 (ctags-5.1.tar.gz) = 4bbdf77f89060876be0d7e06580c4761
Index: ports/devel/ctags/pkg-plist
===================================================================
RCS file: /home/ncvs/ports/devel/ctags/pkg-plist,v
retrieving revision 1.2
diff -u -r1.2 pkg-plist
--- ports/devel/ctags/pkg-plist	11 Nov 1999 08:03:14 -0000	1.2
+++ ports/devel/ctags/pkg-plist	7 Nov 2001 17:21:08 -0000
@@ -1 +1,5 @@
 bin/exctags
+include/ctags/readtags.h
+lib/ctags/readtags.o
+@dirrm include/ctags
+@dirrm lib/ctags
Index: ports/devel/ctags/files/patch-ab
===================================================================
RCS file: ports/devel/ctags/files/patch-ab
diff -N ports/devel/ctags/files/patch-ab
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ ports/devel/ctags/files/patch-ab	7 Nov 2001 17:21:08 -0000
@@ -0,0 +1,10 @@
+--- readtags.c.old	Wed Nov  7 19:06:22 2001
++++ readtags.c	Wed Nov  7 19:06:29 2001
+@@ -12,6 +12,7 @@
+ *   INCLUDE FILES
+ */
+ #include "general.h"	/* must always come first */
++#include <sys/types.h>
+ #include <stdlib.h>
+ #include <string.h>
+ #include <ctype.h>

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011107192517.A19049>