diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2015-05-17 12:42:37 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2015-05-17 12:42:37 +0000 |
commit | ef35e4474f39cd94e1156f4485ca1253331ab25c (patch) | |
tree | 0784aa4d14cfe6eb38ae3e4577f3b2352f666cb4 /www/drood/Makefile | |
parent | adacc2cdfba58c7d1bf732d29d6446672c7e10e1 (diff) | |
download | ports-ef35e4474f39cd94e1156f4485ca1253331ab25c.tar.gz ports-ef35e4474f39cd94e1156f4485ca1253331ab25c.zip |
Notes
Diffstat (limited to 'www/drood/Makefile')
-rw-r--r-- | www/drood/Makefile | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/www/drood/Makefile b/www/drood/Makefile index bed7d0148f9b..cf33f9cf0843 100644 --- a/www/drood/Makefile +++ b/www/drood/Makefile @@ -2,11 +2,30 @@ # $FreeBSD$ PORTNAME= drood -PORTVERSION= 3.25 +PORTVERSION= 4.3 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ MAINTAINER= jimmy@mammothcheese.ca COMMENT= Lightweight kqueue-based http/1.1 server -.include <bsd.port.mk> +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_SQLITE= 3 +USE_OPENSSL= yes + +PLIST_FILES= bin/drood \ + man/man8/drood.8.gz \ + etc/rc.d/drood \ + etc/drood/types.tab \ + etc/drood/types.tab.dist + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 1000000 +BUILD_DEPENDS+= ${LOCALBASE}/lib/libssl.so:${PORTSDIR}/security/openssl +RUN_DEPENDS+= ${LOCALBASE}/lib/libssl.so:${PORTSDIR}/security/openssl +.endif + +.include <bsd.port.post.mk> |