1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-31 10:46:16 +00:00

Add phptags, a utility that makes a tags file from the specified PHP sources.

A tags file gives the locations of specified objects in a group of files.
Each line of the tags file contains the object name, the file in which
it is defined, and a search pattern for the object definition, separated by
white-space. Using the tags file, many editors (ex(1), vim(1), emacs(1), etc)
can quickly locate these object definitions.

PR:		ports/66328
Submitted by:	Roman Bogorodskiy <bogorodskiy@inbox.ru>
This commit is contained in:
Pav Lucistnik 2004-05-06 19:21:44 +00:00
parent baff57de2a
commit 28a61e5826
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=108572
4 changed files with 47 additions and 0 deletions

View File

@ -988,6 +988,7 @@
SUBDIR += pharmacy
SUBDIR += php-dbg
SUBDIR += php-xdebug
SUBDIR += phptags
SUBDIR += physfs
SUBDIR += picasm
SUBDIR += picp

33
devel/phptags/Makefile Normal file
View File

@ -0,0 +1,33 @@
# New ports collection makefile for: phptags
# Date created: 06 May 2004
# Whom: Roman Bogorodskiy
#
# $FreeBSD$
#
PORTNAME= phptags
PORTVERSION= 0.1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= bogorodskiy@inbox.ru
COMMENT= Create a tags file from PHP sources
GNU_CONFIGURE= yes
USE_GETOPT_LONG= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= phptags.1
PLIST_FILES= bin/phptags
PORTDOCS= AUTHORS TODO README ChangeLog INSTALL
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

2
devel/phptags/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (phptags-0.1.tar.gz) = c7214263138710de76390de3291d8b54
SIZE (phptags-0.1.tar.gz) = 141585

11
devel/phptags/pkg-descr Normal file
View File

@ -0,0 +1,11 @@
The phptags utility makes a tags file from the specified PHP sources.
A tags file gives the locations of specified objects in a group of files.
Each line of the tags file contains the object name, the file in which it is
defined, and a search pattern for the object definition, separated by
white-space. Using the tags file, many editors (ex(1), vim(1), emacs(1), etc)
can quickly locate these object definitions.
WWW: http://phptags.sf.net
-Roman Bogorodskiy
<bogorodskiy@inbox.ru>