forked from Lainports/freebsd-ports
Seriously, this removes a warning when the 'list' command was invoked (either by -L or -c list) and penv could not change to its envdir. This is especially useful if penv is used as a make(1) environment processor, as described in my message to -arch today. The previous versions would complain loudly about nonexistent envdirs for e.g. all the build, lib and run dependencies. Happy holidays! Initialy reported by: Valentin Zahariev <curly@e-card.bg> Long disregarded by: myself, as merely an annoyance, before the actual development of the make(1) envproc code, when it became a *big* noisy annoyance :)
45 lines
982 B
Makefile
45 lines
982 B
Makefile
# New ports collection makefile for: penv
|
|
# Date created: 5 August 2001
|
|
# Whom: roam@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= penv
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://devel.ringlet.net/sysutils/penv/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/pre/}
|
|
|
|
MAINTAINER= roam@FreeBSD.org
|
|
|
|
RUN_DEPENDS= envdir:${PORTSDIR}/sysutils/daemontools
|
|
|
|
MAN1= penv.1
|
|
MANCOMPRESSED= yes
|
|
|
|
CFLAGS_COMPAT= -DHAVE_STRLCPY -DHAVE_FGETLN
|
|
MAKE_ENV+= CFLAGS_COMPAT="${CFLAGS_COMPAT}"
|
|
|
|
.if !defined(NO_RELEASE)
|
|
MAKE_ENV+= RELEASE=yes
|
|
.endif
|
|
|
|
DBDIR?= /var/db/${PORTNAME}
|
|
|
|
PLIST_SUB+= DBDIR=${DBDIR}
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/etc
|
|
${MKDIR} ${DBDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/penv.conf.default ${PREFIX}/etc
|
|
if [ ! -e ${PREFIX}/etc/penv.conf ]; then \
|
|
${INSTALL_DATA} ${WRKSRC}/penv.conf.default \
|
|
${PREFIX}/etc/penv.conf; \
|
|
fi
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOCSDIR}/html
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|