naddy d159f8d1ad Make use of "find -exec {} +" (which is POSIX) and "find -delete"
(which is not) throughout the ports Makefiles.

* Replace find|xargs with find -exec {} +
* Replace -exec {} \; with -exec {} + if applicable.
* Use the -delete operator to remove files and empty directories.
* Combine and tweak some find(1) invocations while here.

ok kn@ rsadowski@ espie@
2020-03-20 16:44:21 +00:00

39 lines
982 B
Makefile

# $OpenBSD: Makefile,v 1.25 2020/03/20 16:44:25 naddy Exp $
COMMENT = Audit Record Generation and Utilization System
DISTNAME = argus-3.0.8.2
REVISION = 1
CATEGORIES = net
HOMEPAGE = http://qosient.com/argus/
MASTER_SITES = http://qosient.com/argus/src/
MAINTAINER = Steven Mestdagh <steven@openbsd.org>
# GPLv2
PERMIT_PACKAGE = Yes
WANTLIB = c m pcap z
NO_TEST = Yes
CONFIGURE_STYLE = gnu
MODGNU_CONFIG_GUESS_DIRS = ${WRKSRC}/config
BUILD_DEPENDS = devel/bison
MAKE_FLAGS = CCOPT="${CFLAGS}"
INSTALL_TARGET = install
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/argus/
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/argus/
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/argus/events
find ${WRKSRC}/support -type f -name '*.orig' -delete
cd ${WRKSRC}/support && tar cf - . | \
tar -C ${PREFIX}/share/examples/argus/ -xf -
cd ${PREFIX}/bin && mv argus-snmp argus-lsof argus-vmstat \
${PREFIX}/share/examples/argus/events
.include <bsd.port.mk>