Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Mar 2016 19:50:34 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411111 - in head/sysutils: . sample
Message-ID:  <201603141950.u2EJoYo3006074@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Mon Mar 14 19:50:34 2016
New Revision: 411111
URL: https://svnweb.freebsd.org/changeset/ports/411111

Log:
  sysutils/sample
  
  A program for examining periodic stack traces of all running processes.
  
  WWW: https://github.com/freenas/sample

Added:
  head/sysutils/sample/
  head/sysutils/sample/Makefile   (contents, props changed)
  head/sysutils/sample/distinfo   (contents, props changed)
  head/sysutils/sample/pkg-descr   (contents, props changed)
  head/sysutils/sample/pkg-plist   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Mon Mar 14 19:46:09 2016	(r411110)
+++ head/sysutils/Makefile	Mon Mar 14 19:50:34 2016	(r411111)
@@ -939,6 +939,7 @@
     SUBDIR += safecat
     SUBDIR += samefile
     SUBDIR += samesame
+    SUBDIR += sample
     SUBDIR += sas2ircu
     SUBDIR += sas3ircu
     SUBDIR += savelogs

Added: head/sysutils/sample/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/sample/Makefile	Mon Mar 14 19:50:34 2016	(r411111)
@@ -0,0 +1,35 @@
+# $FreeBSD$
+
+PORTNAME=	sample
+PORTVERSION=	0.02f
+PORTREVISION=	1
+CATEGORIES=	sysutils
+
+MAINTAINER=	wg@FreeBSD.org
+COMMENT=	Examine periodic stack traces of all running processes
+
+LICENSE=	BSD3CLAUSE
+
+BUILD_DEPENDS=	${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd \
+		${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/gnulibiberty \
+		${LOCALBASE}/lib/libxo.a:${PORTSDIR}/devel/libxo \
+		${LOCALBASE}/bin/cython:${PORTSDIR}/lang/cython \
+		${LOCALBASE}/bin/python:${PORTSDIR}/lang/python
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	freenas
+GH_PROJECT=	sample
+GH_TAGNAME=	45e2b86
+
+USES=		python:build kmod
+
+MAKE_ENV=	SYSDIR=${SRC_BASE}/sys
+
+SSP_UNSAFE=	YES
+
+do-install:
+	${INSTALL_KLD} ${WRKSRC}/driver/sample_driver.ko ${STAGEDIR}${KMODDIR}
+	${INSTALL_MAN} ${WRKSRC}/sample/sample.8 ${STAGEDIR}${PREFIX}/man/man8
+	${INSTALL_PROGRAM} ${WRKSRC}/sample/sample ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/sysutils/sample/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/sample/distinfo	Mon Mar 14 19:50:34 2016	(r411111)
@@ -0,0 +1,2 @@
+SHA256 (freenas-sample-0.02f-45e2b86_GH0.tar.gz) = 48d03eabd6c2acc3e311c16aac983d5d1aa2eac6577db48d668599f4b5717764
+SIZE (freenas-sample-0.02f-45e2b86_GH0.tar.gz) = 31533

Added: head/sysutils/sample/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/sample/pkg-descr	Mon Mar 14 19:50:34 2016	(r411111)
@@ -0,0 +1,3 @@
+A program for examining periodic stack traces of all running processes.
+
+WWW: https://github.com/freenas/sample

Added: head/sysutils/sample/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/sample/pkg-plist	Mon Mar 14 19:50:34 2016	(r411111)
@@ -0,0 +1,3 @@
+/%%KMODDIR%%/sample_driver.ko
+bin/sample
+man/man8/sample.8.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603141950.u2EJoYo3006074>