https option now goes under ssl, it doesnlt make sence for pkgsrc system to have yet another option for ssl.

MANTAINER is changed
This commit is contained in:
Nikolay Kalev 2008-04-05 00:42:18 +00:00 committed by Thomas Klausner
parent 4ca0951bc6
commit 0c575ca71e
3 changed files with 6 additions and 9 deletions

View file

@ -1,11 +1,11 @@
# $NetBSD: Makefile,v 1.1.1.1 2008/03/27 18:54:57 rootcho Exp $
# $NetBSD: Makefile,v 1.2 2008/04/05 00:42:18 rootcho Exp $
DISTNAME= nginx-0.6.29
PKGREVISION= 1
CATEGORIES= www
MASTER_SITES= http://sysoev.ru/nginx/
MAINTAINER= ghen@NetBSD.org
MAINTAINER= nkalev@securelabs.org
HOMEPAGE= http://nginx.net/
COMMENT= Lightweight HTTP server and mail proxy server

View file

@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: nginx.sh,v 1.1.1.1 2008/03/27 18:54:57 rootcho Exp $
# $NetBSD: nginx.sh,v 1.2 2008/04/05 00:42:18 rootcho Exp $
#
# PROVIDE: nginx
# REQUIRE: DAEMON

View file

@ -1,7 +1,7 @@
# $NetBSD: options.mk,v 1.2 2008/03/29 01:43:33 rootcho Exp $
# $NetBSD: options.mk,v 1.3 2008/04/05 00:42:18 rootcho Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.nginx
PKG_SUPPORTED_OPTIONS= ssl pcre https dav flv sub gtools
PKG_SUPPORTED_OPTIONS= ssl pcre dav flv sub gtools
PKG_SUGGESTED_OPTIONS= ssl pcre
.include "../../mk/bsd.options.mk"
@ -9,6 +9,7 @@ PKG_SUGGESTED_OPTIONS= ssl pcre
.if !empty(PKG_OPTIONS:Mssl)
.include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-mail_ssl_module
CONFIGURE_ARGS+= --with-http_ssl_module
.endif
.if !empty(PKG_OPTIONS:Mpcre)
@ -18,10 +19,6 @@ CONFIGURE_ARGS+= --without-pcre
CONFIGURE_ARGS+= --without-http_rewrite_module
.endif
.if !empty(PKG_OPTIONS:Mhttps)
CONFIGURE_ARGS+= --with-http_ssl_module
.endif
.if !empty(PKG_OPTIONS:Mdav)
CONFIGURE_ARGS+= --with-http_dav_module
.endif