Date: Sun, 12 Jan 2014 20:05:49 +0000 (UTC) From: Chris Rees <crees@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339541 - in head/www: . htdigest Message-ID: <201401122005.s0CK5nMr088196@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401122005.s0CK5nMr088196>