mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7acef1cd7a
spelled out (many of which are ${PKGDIR}/MESSAGE -> ${PKGMESSAGE} type fixes that shouldn't have been necessary) and the string "/pkg/" appear.
36 lines
1002 B
Makefile
36 lines
1002 B
Makefile
# New ports collection makefile for: sentry
|
|
# Date created: 3 January 1998
|
|
# Whom: chris@still.whet.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= portsentry
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.psionic.com/tools/
|
|
|
|
MAINTAINER= dan@freebsddiary.org
|
|
|
|
ALL_TARGET= freebsd
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's,__PREFIX__,${PREFIX},g' ${WRKSRC}/portsentry.conf
|
|
@${PERL} -pi -e 's,__PREFIX__,${PREFIX},g' ${WRKSRC}/portsentry_config.h
|
|
|
|
do-install:
|
|
.if !exists($(PREFIX)/etc/portsentry.conf)
|
|
${INSTALL_DATA} ${WRKSRC}/portsentry.conf ${PREFIX}/etc
|
|
.endif
|
|
${INSTALL_DATA} ${WRKSRC}/portsentry.conf ${PREFIX}/etc/portsentry.conf.default
|
|
${INSTALL_DATA} ${WRKSRC}/portsentry.ignore ${PREFIX}/etc
|
|
${INSTALL_PROGRAM} ${WRKSRC}/portsentry ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/portsentry
|
|
${INSTALL_DATA} ${WRKSRC}/README.install ${WRKSRC}/README.methods ${WRKSRC}/README.stealth \
|
|
${PREFIX}/share/doc/portsentry
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|