From owner-svn-ports-all@FreeBSD.ORG Sun Jan 12 20:05:50 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8ABE052A; Sun, 12 Jan 2014 20:05:50 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 769481D6D; Sun, 12 Jan 2014 20:05:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0CK5oh2088201; Sun, 12 Jan 2014 20:05:50 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0CK5nMr088196; Sun, 12 Jan 2014 20:05:49 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201401122005.s0CK5nMr088196@svn.freebsd.org> From: Chris Rees Date: Sun, 12 Jan 2014 20:05:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339541 - in head/www: . htdigest 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.17 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, 12 Jan 2014 20:05:50 -0000 Author: crees Date: Sun Jan 12 20:05:49 2014 New Revision: 339541 URL: http://svnweb.freebsd.org/changeset/ports/339541 Log: The htdigest utility from Apache is useful for other web servers too-- lighttpd for example can make use of the digests thus created. This package contains just htdigest, renamed as apache-htdigest to avoid conflicts. It means that the htdigest utility is available without installing the entire Apache distribution. WWW: http://httpd.apache.org/ Added: head/www/htdigest/ head/www/htdigest/Makefile (contents, props changed) head/www/htdigest/distinfo (contents, props changed) head/www/htdigest/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Jan 12 20:04:39 2014 (r339540) +++ head/www/Makefile Sun Jan 12 20:05:49 2014 (r339541) @@ -335,6 +335,7 @@ SUBDIR += hs-yesod-routes SUBDIR += hs-yesod-static SUBDIR += hs-yesod-test + SUBDIR += htdigest SUBDIR += htdump SUBDIR += html2hdml SUBDIR += html2wml Added: head/www/htdigest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/htdigest/Makefile Sun Jan 12 20:05:49 2014 (r339541) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= htdigest +PORTVERSION= 2.4.6 +CATEGORIES= www ipv6 +MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} +DISTNAME= httpd-${PORTVERSION} +DIST_SUBDIR= apache24 + +MAINTAINER= crees@FreeBSD.org +COMMENT= Utility from the Apache distribution for creating htdigest files + +LICENSE= APACHE20 + +LIB_DEPENDS= libaprutil-1.so:${PORTSDIR}/devel/apr1 \ + libexpat.so:${PORTSDIR}/textproc/expat2 + +USES= iconv + +PLIST_FILES= bin/apache-${PORTNAME} man/man1/apache-${PORTNAME}.1.gz + +GNU_CONFIGURE= yes +ALL_TARGET= ${PORTNAME} +BUILD_WRKSRC= ${WRKSRC}/support + +# Don't actually need pcre, so hack around +post-patch: + ${REINPLACE_CMD} -e '/^[[:space:]]*as_fn_error[^"]*"[^"]*pcre/d' \ + ${WRKSRC}/${CONFIGURE_SCRIPT} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/support/${PORTNAME} \ + ${STAGEDIR}${PREFIX}/bin/apache-htdigest + ${INSTALL_MAN} ${WRKSRC}/docs/man/${PORTNAME}.1 \ + ${STAGEDIR}${PREFIX}/man/man1/apache-htdigest.1 + +.include Added: head/www/htdigest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/htdigest/distinfo Sun Jan 12 20:05:49 2014 (r339541) @@ -0,0 +1,2 @@ +SHA256 (apache24/httpd-2.4.6.tar.gz) = b704d6ae3d17f7c56dd49d617f7fde0ade34fa913e78dd14ebaab0992efbc9cf +SIZE (apache24/httpd-2.4.6.tar.gz) = 6700153 Added: head/www/htdigest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/htdigest/pkg-descr Sun Jan 12 20:05:49 2014 (r339541) @@ -0,0 +1,8 @@ +The htdigest utility from Apache is useful for other web servers too-- +lighttpd for example can make use of the digests thus created. + +This package contains just htdigest, renamed as apache-htdigest to avoid +conflicts. It means that the htdigest utility is available without installing +the entire Apache distribution. + +WWW: http://httpd.apache.org/