freebsd-ports/sysutils/DTraceToolkit/Makefile
Tobias Kortkamp 2e3378cde0 Cleanup RLN usage
RLN is based on install(1) and -s means "run strip(1) on the installed
binary".  install(1) ignores -s when it makes a link, so it "works"
now instead of failing when it links non-binaries.
2019-01-14 14:05:39 +00:00

94 lines
2.1 KiB
Makefile

# Created by: Steven Kreuzer <steven@exit2shell.com>
# $FreeBSD$
PORTNAME= dtrace-toolkit
PORTVERSION= 1.0
PORTREVISION= 4
CATEGORIES= sysutils
MAINTAINER= dteske@FreeBSD.org
COMMENT= Collection of useful scripts for DTrace
LICENSE= CDDL
LICENSE_FILE= ${WRKSRC}/Docs/cddl1.txt
USES= perl5 python shebangfix
USE_GITHUB= yes
GH_ACCOUNT= opendtrace
GH_PROJECT= toolkit
GH_TAGNAME= f36d00b
USE_RUBY= yes
SHEBANG_LANG= sh
sh_OLD_CMD= /usr/bin/sh ./sh
sh_CMD= ${SH}
perl_OLD_CMD= \\./perl
ruby_OLD_CMD= \\./ruby
SHEBANG_FILES= Apps/shellsnoop \
Code/Perl/func_abc.pl \
Code/Perl/func_malloc.pl \
Code/Perl/func_slow.pl \
Code/Perl/hello.pl \
Code/Perl/hello_strict.pl \
Code/Python/func_abc.py \
Code/Python/func_slow.py \
Code/Ruby/func_abc.rb \
Code/Ruby/func_slow.rb \
Code/Shell/func_abc.sh \
Code/Shell/func_slow.sh \
Code/Shell/func_waste.sh \
Disk/diskhits \
Disk/iopending \
FS/vopstat \
Include/test.ksh \
Kernel/cpudists \
Kernel/cputimes \
Kernel/dnlcstat \
Mem/xvmstat \
Net/connections \
Net/tcpsnoop \
Net/tcpsnoop_snv \
Net/tcptop \
Net/tcptop_snv \
Proc/dappprof \
Proc/dapptrace \
Proc/fddist \
Proc/lastwords \
Proc/pfilestat \
Proc/sampleproc \
Proc/topsysproc \
System/topsyscall \
Zones/zvmstat \
dexplorer \
dtruss \
dvmstat \
errinfo \
execsnoop \
hotkernel \
hotuser \
install \
iopattern \
iosnoop \
iotop \
opensnoop \
procsystime \
rwsnoop \
rwtop \
statsnoop
NO_BUILD= yes
do-install:
@${MKDIR} ${STAGEDIR}${DATADIR}
(cd ${WRKSRC} && ${TAR} --exclude '*.orig' -cf - . ) | \
(cd ${STAGEDIR}${DATADIR}/ && ${TAR} xvf -)
${RLN} ${STAGEDIR}${DATADIR}/hotkernel ${STAGEDIR}${PREFIX}/bin/hotkernel
${RLN} ${STAGEDIR}${DATADIR}/procsystime ${STAGEDIR}${PREFIX}/bin/procsystime
${RLN} ${STAGEDIR}${DATADIR}/opensnoop ${STAGEDIR}${PREFIX}/bin/opensnoop
${RLN} ${STAGEDIR}${DATADIR}/Apps/shellsnoop ${STAGEDIR}${PREFIX}/bin/shellsnoop
.for MANPAGE in hotkernel procsystime opensnoop shellsnoop
${INSTALL_MAN} ${WRKSRC}/Man/man1m/${MANPAGE}.1m \
${STAGEDIR}${MAN1PREFIX}/man/man1/${MANPAGE}.1
.endfor
.include <bsd.port.mk>