mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
7d562c06ec
Update to 0.1.5. (Sorry pkg_version, I changed the PORTVERSION'ing scheme here to respect its version number rather than to use the date.) Now USE_AUTOMAKE. Install documents unless NOPORTDOCS. A new command `cvsdo' has added.
29 lines
595 B
Makefile
29 lines
595 B
Makefile
# New ports collection makefile for: cvsutils
|
|
# Date created: 6 June 2000
|
|
# Whom: knu@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cvsutils
|
|
PORTVERSION= 0.1.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/knu/
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
USE_AUTOMAKE= YES
|
|
AUTOMAKE= ./bootstrap
|
|
USE_PERL5= YES
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/cvsutils
|
|
.for f in AUTHORS ChangeLog FAQ NEWS README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/cvsutils/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|