mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
2574f69107
Approved by: clsung (mentor)
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# New ports collection makefile for: strace
|
|
# Date created: Tue May 15 22:29:27 MSD 2001
|
|
# Whom: Alex Semenyaka <alex@rinet.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= strace
|
|
PORTVERSION= 4.5.5
|
|
CATEGORIES= devel sysutils
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= tabthorpe@FreeBSD.org
|
|
COMMENT= A portable process tracer
|
|
|
|
USE_BZIP2= yes
|
|
USE_PERL5= yes # for strace-graph
|
|
GNU_CONFIGURE= yes
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
PLIST_FILES= bin/strace bin/strace-graph
|
|
|
|
MAN1= strace.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's,/usr/bin/perl,${PERL},' ${WRKSRC}/strace-graph
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/strace ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/strace-graph ${PREFIX}/bin
|
|
${MKDIR} ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/strace.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in AUTHORS COPYRIGHT CREDITS ChangeLog NEWS PORTING \
|
|
README README-freebsd README-svr4 TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|