mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
428ee0bc4b
Hat: portmgr
35 lines
742 B
Makefile
35 lines
742 B
Makefile
# New ports collection makefile for: cvsstat
|
|
# Date created: 27 August 2001
|
|
# Whom: petef
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cvsstat
|
|
PORTVERSION= 2.23
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://cvs.sslug.dk/cvs2html/utils/
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= # empty
|
|
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Transforms the output of 'cvs status' to a sorted ASCII table
|
|
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/cvsstat
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} -p ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} ${WRKSRC}
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's,^#!/usr/bin/perl,#!${PERL},' ${WRKSRC}/cvsstat
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/cvsstat ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|