mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-04 11:23:46 +00:00
a8693b8dee
rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings.
91 lines
2.7 KiB
Makefile
91 lines
2.7 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: lsof
|
|
# Date created: Sat July 20, 1996
|
|
# Whom: David O'Brien (obrien@FreeBSD.org)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lsof
|
|
DISTVERSION= 4.87A
|
|
PORTEPOCH= 7
|
|
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
|
|
|
|
USE_BZIP2= yes
|
|
USE_GCC= any
|
|
HAS_CONFIGURE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "arm"
|
|
BROKEN= Does not compile on arm
|
|
.endif
|
|
|
|
CONFIGURE_SCRIPT= Configure
|
|
CONFIGURE_ARGS= -n freebsd
|
|
CONFIGURE_ENV= LSOF_CC="${CC}" FREEBSD_SYS="${SRC_BASE}/sys"
|
|
PLIST_FILES= sbin/lsof
|
|
MAN8= lsof.8
|
|
|
|
.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 ; \
|
|
${CAT} ${SRCBALL_NAME}.tar ${EXTRACT_AFTER_ARGS} \
|
|
)
|
|
@( cd ${WRKSRC} ; ${ECHO_CMD} "y" | ./Inventory || exit 1 )
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -m 2755 -g kmem ${WRKSRC}/lsof ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/lsof.8 ${MAN8PREFIX}/man/man8/lsof.8
|
|
@${MKDIR} ${PREFIX}/share/lsof
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/share/lsof
|
|
@${CHMOD} 0444 ${PREFIX}/share/lsof/00*
|
|
|
|
post-install:
|
|
cd ${PREFIX} && \
|
|
${FIND} -s share/lsof -type f -o -type l >>${TMPPLIST} ;\
|
|
${FIND} -d share/lsof -type d \
|
|
| ${SED} -e 's/^/@dirrm /g' >>${TMPPLIST}
|
|
|
|
.include <bsd.port.post.mk>
|