83a5ae6af2
p4pr produces a file from the Perforce depot with each line annotated with the change, revision, and branch from which it came. It takes its time, but the output is invaluable.
27 lines
628 B
Makefile
27 lines
628 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2002/09/01 05:52:54 schmonz Exp $
|
|
#
|
|
|
|
DISTNAME= p4pr
|
|
PKGNAME= ${DISTNAME}-20010504
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/contrib/misc/
|
|
EXTRACT_SUFX= .perl
|
|
|
|
MAINTAINER= schmonz@netbsd.org
|
|
COMMENT= Perforce file annotation with change, revision, and branch
|
|
|
|
DEPENDS+= p4-[0-9]*:../../devel/p4
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
EXTRACT_ONLY= # none
|
|
NO_BUILD= # defined
|
|
USE_PERL5= # defined
|
|
REPLACE_PERL= ${DISTFILES}
|
|
|
|
post-extract:
|
|
${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${DISTFILES} ${PREFIX}/bin/${DISTNAME}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|