mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
52 lines
1.0 KiB
Makefile
52 lines
1.0 KiB
Makefile
# Created by: roam@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= penv
|
|
PORTVERSION= 1.2p1
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://devel.ringlet.net/sysutils/penv/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Set the environment according to the current working directory
|
|
|
|
LICENSE= BSD
|
|
|
|
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}
|
|
|
|
DOCS= html txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
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 ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${TAR} -cpf - ${DOCS} | ${TAR} -xpf - -C ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|