svn commit: r400750 - head/sysutils/DTraceToolkit

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Nov 4 17:54:50 UTC 2015


Author: amdmi3
Date: Wed Nov  4 17:54:49 2015
New Revision: 400750
URL: https://svnweb.freebsd.org/changeset/ports/400750

Log:
  - Fix shebangs
  
  Approved by:	portmgr blanket

Modified:
  head/sysutils/DTraceToolkit/Makefile

Modified: head/sysutils/DTraceToolkit/Makefile
==============================================================================
--- head/sysutils/DTraceToolkit/Makefile	Wed Nov  4 17:30:00 2015	(r400749)
+++ head/sysutils/DTraceToolkit/Makefile	Wed Nov  4 17:54:49 2015	(r400750)
@@ -3,7 +3,7 @@
 
 PORTNAME=	DTraceToolkit
 PORTVERSION=	0.99
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.brendangregg.com/DTraceToolkit/
 
@@ -11,12 +11,64 @@ MAINTAINER=	skreuzer at FreeBSD.org
 COMMENT=	Collection of useful scripts for DTrace
 
 USES=		shebangfix
-sh_OLD_CMD=	/usr/bin/sh
+SHEBANG_LANG=	sh
+sh_OLD_CMD=	/usr/bin/sh ./sh
 sh_CMD=		${SH}
-SHEBANG_LANG+=	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
 
-SHEBANG_FILES=	hotkernel procsystime opensnoop Apps/shellsnoop
-NO_BUILD=	YES
+NO_BUILD=	yes
 
 do-install:
 	${MKDIR} ${STAGEDIR}${DATADIR}


More information about the svn-ports-all mailing list