1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/sysutils/lsof/Makefile
2015-01-05 09:29:58 +00:00

81 lines
2.6 KiB
Makefile

# Created by: David O'Brien <obrien@FreeBSD.org>
# $FreeBSD$
PORTNAME= lsof
DISTVERSION= 4.89B
PORTEPOCH= 8
CATEGORIES= sysutils
MASTER_SITES= http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ \
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/NEW/ \
http://www.lerctr.org/lsof/ \
ftp://ftp.ayamura.org/pub/lsof/ \
ftp://ftp.ayamura.org/pub/lsof/NEW/ \
ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \
ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/NEW/ \
ftp://gd.tuwien.ac.at/utils/admin-tools/lsof/ \
ftp://gd.tuwien.ac.at/utils/admin-tools/lsof/NEW/ \
ftp://ftp.sunet.se/pub/unix/admin/lsof/ \
ftp://ftp.sunet.se/pub/unix/admin/lsof/NEW/ \
ftp://ftp.cert.dfn.de/pub/tools/admin/lsof/ \
ftp://ftp.cert.dfn.de/pub/tools/admin/lsof/NEW/ \
ftp://ftp.tau.ac.il/pub/unix/admin/
DISTNAME= ${PORTNAME}_${DISTVERSION}${DISTNAME_SUFFIX}
MAINTAINER= ler@lerctr.org
COMMENT= Lists information about open files (similar to fstat(1))
#Please leave the below line in for the next clean up.
FIXUP_RELEASE= YES
.if defined(FIXUP_RELEASE)
DISTNAME_SUFFIX=.freebsd
.else
SRCBALL_NAME= ${DISTNAME:S/_W$//}_src
WRKSRC= ${WRKDIR}/${DISTNAME}/${SRCBALL_NAME}
.endif
HAS_CONFIGURE= yes
USES= shebangfix tar:bzip2
SHEBANG_FILES= scripts/sort_res.perl5
.include <bsd.port.pre.mk>
.if !empty(ARCH:Marm*) && ((${OSVERSION} < 1001505) || (${OSVERSION} > 1100000 && ${OSVERSION} < 1100052))
BROKEN= Not supported on ARM platform below release 10.1 or a more recent current
.endif
CONFIGURE_SCRIPT= Configure
CONFIGURE_ARGS= -n freebsd
CONFIGURE_ENV= LSOF_CC="${CC}" FREEBSD_SYS="${SRC_BASE}/sys"
CFLAGS+= -DNEEDS_BOOL_TYPEDEF
.if !exists(${SRC_BASE}/sys/kern/kern_lockf.c)
IGNORE= requires kernel sources
.endif
.if !defined(FIXUP_RELEASE)
post-extract:
@( cd ${WRKDIR}/${DISTNAME} ; \
EXPMD5=`${SED} -n 's/^[[:blank:]]*\(MD5*=*\)/\1/p' README.${DISTNAME}` ; \
CALCMD5=`${MD5} ${SRCBALL_NAME}.tar` ; \
if [ "$${EXPMD5}"X != "$${CALCMD5}"X ]; then \
${ECHO} "Expected and calculated MD5 signatures don't agree." ; \
${ECHO} "($$EXPMD5 != $$CALCMD5)" ; \
exit 1 ; \
fi ; \
${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${SRCBALL_NAME}.tar ${EXTRACT_AFTER_ARGS} \
)
@( cd ${WRKSRC} ; ${ECHO_CMD} "y" | ./Inventory || exit 1 )
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/lsof ${STAGEDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/lsof.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/lsof.8
@${MKDIR} ${STAGEDIR}${PREFIX}/share/lsof
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${STAGEDIR}${PREFIX}/share/lsof
@${CHMOD} 0444 ${STAGEDIR}${PREFIX}/share/lsof/00*
.include <bsd.port.post.mk>