1998-09-16 04:14:27 +00:00
|
|
|
# ex:ts=8
|
1996-11-11 19:42:45 +00:00
|
|
|
# New ports collection makefile for: lsof
|
1997-02-12 10:21:45 +00:00
|
|
|
# Version required: 3.87
|
1996-11-11 19:42:45 +00:00
|
|
|
# Date created: Sat July 20, 1996
|
1997-05-26 10:28:04 +00:00
|
|
|
# Whom: David O'Brien (obrien@FreeBSD.org)
|
1996-11-11 19:42:45 +00:00
|
|
|
#
|
1999-08-28 02:17:34 +00:00
|
|
|
# $Id: Makefile,v 1.47 1999/08/27 22:30:12 mharo Exp $
|
1996-11-11 19:42:45 +00:00
|
|
|
#
|
|
|
|
|
1999-07-31 17:22:26 +00:00
|
|
|
DISTNAME= lsof_4.45_W
|
|
|
|
PKGNAME= lsof-4.45
|
1996-11-11 19:42:45 +00:00
|
|
|
CATEGORIES= sysutils
|
|
|
|
MASTER_SITES= ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/ \
|
1999-03-09 13:08:48 +00:00
|
|
|
ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/NEW/ \
|
1996-11-11 19:42:45 +00:00
|
|
|
ftp://ftp.cert.dfn.de/pub/tools/admin/lsof/ \
|
|
|
|
ftp://ftp.auscert.org.au/pub/mirrors/vic.cc.purdue.edu/lsof/ \
|
|
|
|
ftp://ftp.web.ad.jp/pub/UNIX/tools/lsof/ \
|
1997-04-01 22:10:37 +00:00
|
|
|
ftp://ftp.sunet.se/pub/unix/admin/lsof/
|
1996-11-11 19:42:45 +00:00
|
|
|
|
1998-06-09 16:09:49 +00:00
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
1997-05-26 10:28:04 +00:00
|
|
|
|
1996-11-11 19:42:45 +00:00
|
|
|
WRKSRC= ${WRKDIR}/${SRCBALL_NAME}
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
CONFIGURE_SCRIPT= Configure
|
|
|
|
CONFIGURE_ARGS= -n freebsd
|
1999-02-02 06:44:19 +00:00
|
|
|
CONFIGURE_ENV= LSOF_CC=${CC}
|
1998-12-01 09:41:59 +00:00
|
|
|
MAN8= lsof.8
|
1996-11-11 19:42:45 +00:00
|
|
|
|
1998-12-02 07:01:08 +00:00
|
|
|
.if defined(PACKAGE_BUILDING)
|
|
|
|
.if !exists(/usr/src/sys/miscfs/fdesc/fdesc.h)
|
|
|
|
BROKEN= 'please install kernel source for offical package builds'
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
1996-11-11 19:42:45 +00:00
|
|
|
SRCBALL_NAME= ${DISTNAME:S/_W$//}
|
|
|
|
|
|
|
|
post-extract:
|
|
|
|
@( cd ${WRKDIR} ; \
|
1999-08-28 02:17:34 +00:00
|
|
|
EXPMD5=`${GREP} MD5 README.${SRCBALL_NAME} | ${SED} 's/^[ ]*//'` ; \
|
1996-11-11 19:42:45 +00:00
|
|
|
CALCMD5=`${MD5} ${SRCBALL_NAME}.tar` ; \
|
|
|
|
if [ "$${EXPMD5}"X != "$${CALCMD5}"X ]; then \
|
1999-08-27 22:30:39 +00:00
|
|
|
${ECHO} "Expected and calculated MD5 signatures don't agree." ; \
|
|
|
|
${ECHO} "($$EXPMD5 != $$CALCMD5)" ; \
|
1996-11-11 19:42:45 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi ; \
|
|
|
|
${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS:S/z//} ${SRCBALL_NAME}.tar \
|
1999-02-28 03:37:19 +00:00
|
|
|
${EXTRACT_AFTER_ARGS} \
|
1996-11-11 19:42:45 +00:00
|
|
|
)
|
1999-08-27 22:30:39 +00:00
|
|
|
@( cd ${WRKSRC} ; ${ECHO} "y" | ./Inventory || exit 1 )
|
1996-11-11 19:42:45 +00:00
|
|
|
|
1998-12-07 20:04:01 +00:00
|
|
|
#pre-patch:
|
|
|
|
# @${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME}"
|
|
|
|
# @${SED} -e "s|^--- d|--- dialects/freebsd/d|" \
|
|
|
|
# ${DISTDIR}/freebsd_3.0_patch > ${WRKDIR}/p
|
|
|
|
# ${PATCH} ${PATCH_DIST_ARGS} < ${WRKDIR}/p
|
1996-11-11 19:42:45 +00:00
|
|
|
|
|
|
|
do-install:
|
1998-09-16 04:14:27 +00:00
|
|
|
${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -m 2755 -g kmem ${WRKSRC}/lsof ${PREFIX}/sbin
|
1999-03-30 21:50:20 +00:00
|
|
|
${INSTALL_MAN} ${WRKSRC}/lsof.8 ${PREFIX}/man/man8/lsof.8
|
1997-03-24 18:42:57 +00:00
|
|
|
@${MKDIR} ${PREFIX}/share/lsof
|
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/share/lsof
|
1999-08-22 19:01:07 +00:00
|
|
|
@${CHMOD} 0444 ${PREFIX}/share/lsof/00*
|
1997-03-24 18:42:57 +00:00
|
|
|
|
1999-02-02 06:44:19 +00:00
|
|
|
.if !exists(/sys/miscfs/fdesc/fdesc.h) && !exists(/usr/src/miscfs/fdesc/fdesc.h)
|
1998-12-01 09:40:48 +00:00
|
|
|
post-install:
|
|
|
|
@${ECHO} "************************************************************"
|
|
|
|
@${ECHO} "* W a r n i n g *"
|
|
|
|
@${ECHO} "* A more capable version of LSOF is built if you have *"
|
|
|
|
@${ECHO} "* kernel source installed and /sys exists. *"
|
|
|
|
@${ECHO} "* If this is the case, please ensure /sys is consistant *"
|
|
|
|
@${ECHO} "* with respect to your running kernel (i.e. not new than). *"
|
|
|
|
@${ECHO} "************************************************************"
|
1999-02-02 06:44:19 +00:00
|
|
|
.endif
|
1998-12-01 09:40:48 +00:00
|
|
|
|
1996-11-11 19:42:45 +00:00
|
|
|
.include <bsd.port.mk>
|