1d924266fb
ChangeLog: [decof/du/tru64] Remove support because the os is no longer updated for more than 10 years [openstep/nextstep] Remove support because the os is no longer updated for more than 20 years Add experimental build system based on Autotools (#270) Fixed LTsock testing on darwin (#272) Remove NEW and OLD folders (#6) Fix FreeBSD testcases (#271) Rewrite documentation and publish at https://lsof.readthedocs.io/
64 lines
1.6 KiB
Makefile
64 lines
1.6 KiB
Makefile
# note: If someone has a fix for a particular ARCH please feel free
|
|
# to commit it. I (ler) don't have access to all the ARCH's
|
|
|
|
PORTNAME= lsof
|
|
DISTVERSION= 4.97.0
|
|
PORTEPOCH= 8
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= ler@FreeBSD.org
|
|
COMMENT= Lists information about open files (similar to fstat(1))
|
|
WWW= https://github.com/lsof-org/lsof
|
|
|
|
LICENSE= lsof
|
|
LICENSE_NAME= lsof
|
|
LICENSE_FILE= ${FILESDIR}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
USES= compiler cpe shebangfix
|
|
CPE_VENDOR= lsof_project
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= lsof-org
|
|
|
|
SHEBANG_FILES= scripts/*.pl
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
CFLAGS_powerpc= -DAIM
|
|
CFLAGS_powerpcspe= -DBOOKE
|
|
|
|
OPTIONS_DEFINE_powerpc64= AIM BOOKE
|
|
OPTIONS_DEFAULT_powerpc64= AIM
|
|
|
|
AIM_DESC= Set for AIM hardware
|
|
BOOKE_DESC= Set for BOOKE hardware
|
|
|
|
AIM_CFLAGS= -DAIM
|
|
BOOKE_CFLAGS= -DBOOKE
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CONFIGURE_SCRIPT= Configure
|
|
CONFIGURE_ARGS= -n freebsd
|
|
CONFIGURE_ENV= FREEBSD_SYS="${SRC_BASE}/sys" \
|
|
LSOF_CC="${CC}"
|
|
|
|
# GCC needs -lzfs -lzpool for reasons unknown. If someone can
|
|
# figure out why, I (ler) am all ears.
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc
|
|
CONFIGURE_ENV+= LSOF_CFGL="-lzfs -lzpool"
|
|
.endif
|
|
|
|
.if !exists(${SRC_BASE}/sys/kern/kern_lockf.c)
|
|
IGNORE+= requires kernel sources
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lsof ${STAGEDIR}${PREFIX}/sbin
|
|
(cd ${WRKSRC} && /usr/bin/soelim Lsof.8 > ${WRKSRC}/lsof.8)
|
|
${INSTALL_MAN} ${WRKSRC}/lsof.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/lsof.8
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/lsof
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${STAGEDIR}${PREFIX}/share/lsof
|
|
@${CHMOD} 0444 ${STAGEDIR}${PREFIX}/share/lsof/00*
|
|
|
|
.include <bsd.port.post.mk>
|