From owner-svn-ports-all@FreeBSD.ORG Sun May 17 12:42:39 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27726B97; Sun, 17 May 2015 12:42:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0D7E1BDF; Sun, 17 May 2015 12:42:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4HCgcbC062964; Sun, 17 May 2015 12:42:38 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4HCgcvB062961; Sun, 17 May 2015 12:42:38 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201505171242.t4HCgcvB062961@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 17 May 2015 12:42:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386605 - head/www/drood X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 May 2015 12:42:39 -0000 Author: riggs Date: Sun May 17 12:42:37 2015 New Revision: 386605 URL: https://svnweb.freebsd.org/changeset/ports/386605 Log: Update to upstream version 4.2 PR: 200180 Submitted by: jimmy@mammothcheese.ca (maintainer) Deleted: head/www/drood/pkg-plist Modified: head/www/drood/Makefile head/www/drood/distinfo head/www/drood/pkg-descr Modified: head/www/drood/Makefile ============================================================================== --- head/www/drood/Makefile Sun May 17 12:10:02 2015 (r386604) +++ head/www/drood/Makefile Sun May 17 12:42:37 2015 (r386605) @@ -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 +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 + +.if ${OSVERSION} < 1000000 +BUILD_DEPENDS+= ${LOCALBASE}/lib/libssl.so:${PORTSDIR}/security/openssl +RUN_DEPENDS+= ${LOCALBASE}/lib/libssl.so:${PORTSDIR}/security/openssl +.endif + +.include Modified: head/www/drood/distinfo ============================================================================== --- head/www/drood/distinfo Sun May 17 12:10:02 2015 (r386604) +++ head/www/drood/distinfo Sun May 17 12:42:37 2015 (r386605) @@ -1,2 +1,2 @@ -SHA256 (drood-3.25.tar.gz) = 4717e15e14af948fa89b8ee27c036679c08d64de393ab72d27a9ffcc5c4b90d9 -SIZE (drood-3.25.tar.gz) = 61146 +SHA256 (drood-4.3.tar.gz) = 9bfa4818c6a0bfea49ec32450a5923e9387263cb4fb17430fb70ff1bc91bd529 +SIZE (drood-4.3.tar.gz) = 53744 Modified: head/www/drood/pkg-descr ============================================================================== --- head/www/drood/pkg-descr Sun May 17 12:10:02 2015 (r386604) +++ head/www/drood/pkg-descr Sun May 17 12:42:37 2015 (r386605) @@ -1,7 +1,6 @@ Drood is a lightweight, partially-compliant HTTP/1.1 server, intended as an alternative to more complex web servers for websites where the server -requirements are simple. Drood supports name-based virtual hosting, CGI -and SCGI, local WebSocket forwarding, gzipped content-encoding for static -resources, and will service both IPv4 and IPv6 connections. +requirements are simple. Drood supports IPv4/IPv6, name-based virtual +hosting, TLS, SCGI, and WebSockets. WWW: http://www.mammothcheese.ca/