freebsd-ports/sysutils/daemontools/Makefile
Mathieu Arnold 60d1a83c2a MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
2015-05-14 10:15:04 +00:00

92 lines
2.4 KiB
Makefile

# Created by: Dom Mitchell <dom@myrddin.demon.co.uk>
# $FreeBSD$
PORTNAME= daemontools
PORTVERSION= 0.76
PORTREVISION= 17
CATEGORIES= sysutils
MASTER_SITES= http://cr.yp.to/daemontools/ \
http://mirror.shatow.net/freebsd/${PORTNAME}/:DEFAULT,1 \
LOCAL/bdrewery/${PORTNAME}/:DEFAULT,1
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= bdrewery@FreeBSD.org
COMMENT= Service monitoring and logging utilities by djb
LICENSE= PD
LICENSE_NAME= public domain
LICENSE_TEXT= The daemontools-0.76.tar.gz archive is in the public domain as of 2007.12.28.
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
CONFLICTS= freedt-[0-9]* serialmail-[0-9]*
OPTIONS_DEFINE= MAN SIGQ12 TESTS
OPTIONS_SUB= yes
MAN_DESC= Install Gerrit Pape's manual pages
S_EARLY_DESC= Start early, before the normal daemons
S_NORMAL_DESC= Start normally in the usual boot sequence
SIGQ12_DESC= Add svc support for QUIT, USR1, and USR2 signals
TESTS_DESC= Run the test suite, fails on NFS-mounted workdir
OPTIONS_SINGLE= SEQ
OPTIONS_SINGLE_SEQ= S_EARLY S_NORMAL
OPTIONS_DEFAULT= MAN S_NORMAL TESTS
.include <bsd.port.options.mk>
. if ${PORT_OPTIONS:MS_EARLY}
SVSCAN_REQUIRE?= SERVERS
SVSCAN_BEFORE?= DAEMON
. endif
. if ${PORT_OPTIONS:MS_NORMAL}
SVSCAN_REQUIRE?= LOGIN
SVSCAN_BEFORE?=
. endif
SUB_LIST+= SVSCAN_REQUIRE=${SVSCAN_REQUIRE} SVSCAN_BEFORE=${SVSCAN_BEFORE}
.if ${PORT_OPTIONS:MMAN}
MANDATE= -20010714
MASTER_SITES+= http://smarden.org/pape/djb/manpages/:1
DISTFILES+= ${DISTNAME}-man${MANDATE}.tar.gz:1
.endif
.if ${PORT_OPTIONS:MSIGQ12}
#PATCH_SITES+= http://thedjbway.org/patches/:sigq12
PATCH_SITES+= LOCAL/bdrewery/${PORTNAME}/:sigq12
PATCHFILES+= daemontools-0.76.sigq12.patch:-p2:sigq12
.endif
USE_RC_SUBR= svscan
WRKSRC= ${WRKDIR}/admin/${DISTNAME}/src
ALL_TARGET= it
INSTALL_TARGET= setup check
.if ${PORT_OPTIONS:MTESTS}
EXTRA_PATCHES+= ${FILESDIR}/rts-skip.patch
.endif
post-patch:
@${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc
@${ECHO_CMD} "${CC} ${STRIP}" > ${WRKSRC}/conf-ld
do-install:
(while read cmd; do \
if ${FILE} ${WRKSRC}/$$cmd | ${GREP} -q "shell script"; then \
${INSTALL_SCRIPT} ${WRKSRC}/$$cmd \
${STAGEDIR}${PREFIX}/bin; \
else \
${INSTALL_PROGRAM} ${WRKSRC}/$$cmd \
${STAGEDIR}${PREFIX}/bin; \
fi \
done) < ${WRKSRC}/../package/commands
.if ${PORT_OPTIONS:MMAN}
${INSTALL_MAN} ${WRKDIR}/daemontools-man/*.8 \
${STAGEDIR}${MAN8PREFIX}/man/man8/
.endif
.include <bsd.port.mk>