3d7db02dc0
- Add LICENSE_FILE - Add NO_ARCH - Switch to options helpers
29 lines
613 B
Makefile
29 lines
613 B
Makefile
# Created by: knu@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cvsutils
|
|
PORTVERSION= 0.2.6
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.red-bean.com/cvsutils/releases/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= CVS utilities which facilitate working with local working directories
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= perl5 shebangfix
|
|
GNU_CONFIGURE= yes
|
|
SHEBANG_FILES= cvs*.pl
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in AUTHORS ChangeLog NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|