New port: sysutils/lsop

lsop is a FreeBSD utility to list all processes running with outdated
binaries or shared libraries (that is, binaries or shared libraries
that have been upgraded or simply deleted).

lsop does not currently work when started in a FreeBSD jail!

WWW: https://github.com/606u/lsop

PR:		213340
Submitted by:	606u@dir.bg
Approved by:	lme (mentor)
Differential Revision:	https://reviews.freebsd.org/D10083
This commit is contained in:
Tobias Kortkamp 2017-03-21 21:00:32 +00:00
parent 13117c033c
commit 754f0656a7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=436654
4 changed files with 39 additions and 0 deletions

View File

@ -559,6 +559,7 @@
SUBDIR += lookat
SUBDIR += lr
SUBDIR += lsof
SUBDIR += lsop
SUBDIR += ltrace
SUBDIR += lttng-tools
SUBDIR += lttng-ust

28
sysutils/lsop/Makefile Normal file
View File

@ -0,0 +1,28 @@
# $FreeBSD$
PORTNAME= lsop
PORTVERSION= 0.1
DISTVERSIONPREFIX= v
CATEGORIES= sysutils
MAINTAINER= 606u@dir.bg
COMMENT= List all processes running with outdated binaries or shared libraries
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= 606u
PLIST_FILES= sbin/lsop \
libexec/nagios/check_restart
post-patch:
@${REINPLACE_CMD} -e 's|lsop|${PREFIX}/sbin/lsop|' ${WRKSRC}/check_restart
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/lsop ${STAGEDIR}${PREFIX}/sbin
@${MKDIR} ${STAGEDIR}${PREFIX}/libexec/nagios
${INSTALL_SCRIPT} ${WRKSRC}/check_restart ${STAGEDIR}${PREFIX}/libexec/nagios
.include <bsd.port.mk>

3
sysutils/lsop/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1488798320
SHA256 (606u-lsop-v0.1_GH0.tar.gz) = e69bcc173c24672dc320da0c30030d0790b25a0869f39379dbfa179282421df9
SIZE (606u-lsop-v0.1_GH0.tar.gz) = 3918

7
sysutils/lsop/pkg-descr Normal file
View File

@ -0,0 +1,7 @@
lsop is a FreeBSD utility to list all processes running with outdated
binaries or shared libraries (that is, binaries or shared libraries
that have been upgraded or simply deleted).
lsop does not currently work when started in a FreeBSD jail!
WWW: https://github.com/606u/lsop