openbsd-ports/sysutils/lsof/Makefile
2002-04-23 21:36:54 +00:00

74 lines
1.9 KiB
Makefile

# $OpenBSD: Makefile,v 1.41 2002/04/23 21:36:54 pvalchev Exp $
COMMENT= "list information about open files"
VERSION= 4.63
DISTNAME= lsof_${VERSION}
PKGNAME= ${DISTNAME:S/_/-/}
CATEGORIES= sysutils
NEED_VERSION= 1.524
MASTER_SITES= ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/ \
ftp://ftp.crc.doc.ca/packages/lsof/ \
ftp://ftp.sunet.se/pub/unix/admin/lsof/
HOMEPAGE= http://www-rcd.cc.purdue.edu/~abe/
MAINTAINER= Peter Valchev <pvalchev@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MAKE_FLAGS= DEBUG="${CFLAGS}"
CONFIGURE_STYLE= simple
CONFIGURE_SCRIPT= Configure
CONFIGURE_ARGS= -n openbsd
CONFIGURE_ENV= LSOF_CC="${CC}"
SRCBALL_NAME= ${DISTNAME}_src
WRKDIST= ${WRKDIR}/${DISTNAME}/${SRCBALL_NAME}
.if ${MACHINE_ARCH} == "sparc"
IS_INTERACTIVE= Yes
.if defined(SUN4) && ${SUN4:U} == YES
CDEF=-DSUN4
.elif defined(SUN4C) && ${SUN4C:U} == YES
CDEF=-DSUN4C
.elif defined(SUN4M) && ${SUN4M:U} == YES
CDEF=-DSUN4M
.endif
MAKE_ENV= CDEF="${CDEF}"
.if !defined(CDEF)
pre-build:
@echo
@echo "*** when building for a sparc you must specify one of"
@echo "*** SUN4=Yes, SUN4C=Yes, or SUN4M=Yes"
@echo "*** on the make command line"
@echo
exit 1;
.endif
.endif
post-extract:
@(cd ${WRKDIST}/..; \
EXPMD5=`/usr/bin/grep MD5 README.${DISTNAME} | \
/usr/bin/sed 's/^[ ]*//'` ; \
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 ; \
tar -xf ${SRCBALL_NAME}.tar)
do-install:
${INSTALL_SCRIPT_DIR} ${PREFIX}/share/lsof
${INSTALL_PROGRAM} ${WRKBUILD}/lsof ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/lsof.man ${PREFIX}/man/cat8/lsof.0
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/share/lsof
@chmod 444 ${PREFIX}/share/lsof/00*
.include <bsd.port.mk>