openbsd-ports/sysutils/lsof/Makefile

72 lines
2.1 KiB
Makefile
Raw Normal View History

2005-06-05 15:40:54 -04:00
# $OpenBSD: Makefile,v 1.56 2005/06/05 19:40:54 pvalchev Exp $
COMMENT= "list information about open files"
1997-11-25 18:16:33 -05:00
2005-06-05 15:40:54 -04:00
VERSION= 4.75
2002-01-24 19:58:18 -05:00
DISTNAME= lsof_${VERSION}
2005-06-05 15:40:54 -04:00
PKGNAME= ${DISTNAME:S/_/-/}
1997-11-25 18:16:33 -05:00
CATEGORIES= sysutils
2002-01-24 19:58:18 -05:00
MASTER_SITES= ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/ \
2003-05-13 00:06:11 -04:00
ftp://ftp.ayamura.org/pub/lsof/ \
ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \
ftp://ftp.cert.dfn.de/pub/tools/admin/lsof/ \
ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/ \
ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/ \
ftp://ftp.sunet.se/pub/unix/admin/lsof/ \
ftp://ftp.tau.ac.il/pub/unix/admin/ \
ftp://ftp.tu-darmstadt.de/pub/sysadmin/lsof/ \
ftp://ftp.tux.org/pub/sites/vic.cc.purdue.edu/tools/unix/lsof/ \
ftp://gd.tuwien.ac.at/utils/admin-tools/lsof/ \
ftp://sunsite.ualberta.ca/pub/Mirror/lsof/ \
ftp://the.wiretapped.net/pub/security/host-security/lsof/
1997-11-25 18:16:33 -05:00
MAINTAINER= Peter Valchev <pvalchev@openbsd.org>
1997-11-25 18:16:33 -05:00
2000-09-01 23:26:56 -04:00
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
2004-12-20 05:35:34 -05:00
WANTLIB= c kvm
2000-09-01 23:26:56 -04:00
MAKE_FLAGS= DEBUG="${CFLAGS}"
2000-02-12 01:29:49 -05:00
2000-09-01 23:26:56 -04:00
CONFIGURE_STYLE= simple
1999-04-18 16:34:28 -04:00
CONFIGURE_SCRIPT= Configure
1997-11-25 18:16:33 -05:00
CONFIGURE_ARGS= -n openbsd
2000-09-01 23:26:56 -04:00
CONFIGURE_ENV= LSOF_CC="${CC}"
1997-11-25 18:16:33 -05:00
2002-01-24 19:58:18 -05:00
SRCBALL_NAME= ${DISTNAME}_src
WRKDIST= ${WRKDIR}/${DISTNAME}/${SRCBALL_NAME}
1997-11-25 18:16:33 -05:00
post-extract:
2002-01-24 19:58:18 -05:00
@(cd ${WRKDIST}/..; \
EXPMD5=`/usr/bin/grep MD5 README.${DISTNAME} | \
/usr/bin/sed 's/^[ ]*//'` ; \
CALCMD5=`md5 ${SRCBALL_NAME}.tar` ; \
1997-11-25 18:16:33 -05:00
if [ "$${EXPMD5}"X != "$${CALCMD5}"X ]; then \
echo "Expected and calculated MD5 signatures don't agree." ; \
echo "($$EXPMD5 != $$CALCMD5)" ; \
exit 1 ; \
1997-11-25 18:16:33 -05:00
fi ; \
2000-09-01 23:26:56 -04:00
tar -xf ${SRCBALL_NAME}.tar)
1997-11-25 18:16:33 -05:00
pre-configure:
@if [ ! -d /sys ]; then \
echo ""; \
echo "*** Error: Building this package requires the" ; \
echo "*** kernel sources to be available under /sys" ; \
echo ""; \
exit 1; \
fi
2002-10-28 14:53:43 -05:00
NO_REGRESS= Yes
1997-11-25 18:16:33 -05:00
do-install:
${INSTALL_SCRIPT_DIR} ${PREFIX}/share/lsof
2000-09-01 23:26:56 -04:00
${INSTALL_PROGRAM} ${WRKBUILD}/lsof ${PREFIX}/sbin
2000-09-09 18:35:37 -04:00
${INSTALL_MAN} ${WRKSRC}/lsof.man ${PREFIX}/man/cat8/lsof.0
1997-11-25 18:16:33 -05:00
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/share/lsof
2000-09-01 23:26:56 -04:00
@chmod 444 ${PREFIX}/share/lsof/00*
1997-11-25 18:16:33 -05:00
.include <bsd.port.mk>