freebsd-ports/www/wyvern/Makefile
Akinori MUSHA f5bea97c14 Do not clobber the existing htdocs/index.html on installation.
Noted by:	Kawaguti Ginga <ginga@athena.club.ne.jp>
2001-08-06 09:08:10 +00:00

45 lines
1.1 KiB
Makefile

# New ports collection makefile for: Wyvern
# Date created: 3 March 2001
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= wyvern
PORTVERSION= 1.0.4
CATEGORIES= www ipv6
MASTER_SITES= http://www.MysticWALL.com/software/src/
MAINTAINER= knu@FreeBSD.org
USE_BZIP2= yes
USE_OPENSSL= yes
USE_GMAKE= yes
USE_AUTOCONF= yes
PREFIX= ${LOCALBASE}/wyvern
CONFIGURE_ARGS= --with-ssl=yes \
--with-ssl-includes="${OPENSSLINC}" \
--with-ssl-libraries="${OPENSSLLIB}"
MAKE_ARGS= rcdir="${LOCALBASE}/etc/rc.d"
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 400014
CONFIGURE_ARGS+= --enable-ipv6
.endif
post-extract:
${MV} ${WRKSRC}/htdocs/index.html ${WRKSRC}/htdocs/index.html-dist
post-install:
${LN} -sf ${PREFIX}/sbin/* ${LOCALBASE}/sbin/
if [ ! -f ${PREFIX}/htdocs/index.html ]; then \
${CP} -p ${PREFIX}/htdocs/index.html-dist ${PREFIX}/htdocs/index.html; \
fi
@${CAT} ${PKGMESSAGE}
certificate:
cd ${PREFIX} && openssl req -config conf/ssl.cnf -new -x509 -nodes \
-out conf/wyvern.pem -keyout conf/wyvern.pem
.include <bsd.port.post.mk>