171e025b4a
In the vast majority of cases, nothing has changed (i.e. .tgz, .tar.gz, and .tar.bz2). EXTRACT_USING_PAX can be set as before. For custom extractions, instead of using EXTRACT_BEFORE_ARGS, EXTRACT_AFTER_ARGS and EXTRACT_CMD, simply set EXTRACT_CMD to be the command needed to decompress and extract the lements from the archive. ${DOWNLOADED_DISTFILE} can be used to reference the distfile(s). e.g. for compressed shars, where previously there was: EXTRACT_CMD= ${GZCAT} EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= |sh now use: EXTRACT_CMD= ${GZCAT} ${DOWNLOADED_DISTFILE} | ${SH}
50 lines
1.5 KiB
Makefile
50 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.15 1999/04/01 14:07:56 agc Exp $
|
|
# FreeBSD Id: Makefile,v 1.19 1998/03/08 06:44:48 obrien Exp
|
|
#
|
|
|
|
DISTNAME= lsof_4.41_W
|
|
PKGNAME= lsof-4.41
|
|
WRKSRC= ${WRKDIR}/${SRCBALL_NAME}
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/ \
|
|
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/ \
|
|
ftp://ftp.sunet.se/pub/unix/admin/lsof/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www-rcd.cc.purdue.edu/~abe/
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= Configure
|
|
OPSYS!= uname -s
|
|
CONFIGURE_ARGS= -n netbsd
|
|
|
|
SRCBALL_NAME= ${DISTNAME:S/_W$//}
|
|
|
|
post-extract:
|
|
@( cd ${WRKDIR} ; \
|
|
EXPMD5=`${GREP} MD5 README.${SRCBALL_NAME} | ${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)" ; \
|
|
${FALSE} ; \
|
|
fi ; \
|
|
if [ "X${EXTRACT_USING_PAX}" = "X" ]; then \
|
|
${GTAR} -xf ${SRCBALL_NAME}.tar; \
|
|
else \
|
|
${PAX} -r < ${SRCBALL_NAME}.tar}; \
|
|
fi
|
|
)
|
|
@( cd ${WRKSRC} ; ${ECHO} "y" | ./Inventory || exit 1 )
|
|
|
|
do-install:
|
|
${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m 2755 -g kmem \
|
|
${WRKSRC}/lsof ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/lsof.man ${PREFIX}/man/man1/lsof.1
|
|
@${MKDIR} ${PREFIX}/share/lsof
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/share/lsof
|
|
@chmod 0444 ${PREFIX}/share/lsof/00*
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|