1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/net/delegate/Makefile
Masafumi Max NAKANE 11dcaeb94d Upgrade to 7.9.10.
While at it:
- Fix typo in the security warning.
- Correct one of the master sites.
- List the master site which accepts passive ftp before one which doesn't.
- So remove the message that suggests to unsetenv FTP_PASSIVE_MODE.
2002-07-27 19:48:31 +00:00

60 lines
2.4 KiB
Makefile

# New ports collection makefile for: DeleGate
# Date created: 26 Jan 1997
# Whom: Masafumi NAKANE <max@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= delegate
PORTVERSION= 7.9.10
CATEGORIES= net www
MASTER_SITES= ftp://www.delegate.org/pub/DeleGate/ \
ftp://ftp.delegate.org/pub/DeleGate/
DISTNAME= ${PORTNAME}${PORTVERSION}
MAINTAINER= max@FreeBSD.org
USE_BZIP2= YES
NO_PACKAGE= "Insecure program."
IS_INTERACTIVE= YES
pre-fetch:
.if !defined(FORCE_BUILD) || ${FORCE_BUILD}!="YES"
@${ECHO} "*********************************************************************"
@${ECHO} "* WARNING! WARNING! WARNING! WARNING! WARNING! *"
@${ECHO} "* This program has known security problems which may allow a remote *"
@${ECHO} "* attacker to take control of your machine. *"
@${ECHO} "* See FreeBSD security advisory 00:04 for more information. *"
@${ECHO} "* *"
@${ECHO} "* It is strongly recommended that you avoid using this program. *"
@${ECHO} "* *"
@${ECHO} "* If you would like to use this program despite the danger, run *"
@${ECHO} "* make with ``FORCE_BUILD=YES'' *"
@${ECHO} "* WARNING! WARNING! WARNING! WARNING! WARNING! *"
@${ECHO} "*********************************************************************"
@${FALSE}
.else
@${ECHO} "*********************************************************************"
@${ECHO} "* WARNING! WARNING! WARNING! WARNING! WARNING! *"
@${ECHO} "* You have chosen to build an insecure program. *"
@${ECHO} "* This program has known security problems which may allow a remote *"
@${ECHO} "* attacker to take control of your machine. *"
@${ECHO} "* See FreeBSD security advisory 00:04 for more information. *"
@${ECHO} "*********************************************************************"
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/delegated ${PREFIX}/sbin
@${MKDIR} ${PREFIX}/share/examples/delegate
${INSTALL_DATA} ${FILESDIR}/delegated.sh \
${PREFIX}/share/examples/delegate
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/delegate
.for f in Manual.htm tutor-jp.htm tutor-en.htm
${INSTALL_DATA} ${WRKSRC}/doc/$f ${PREFIX}/share/doc/delegate
.endfor
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>