svn commit: r355129 - in head/www: . mod_realdoc

Martin Wilke miwi at FreeBSD.org
Sun May 25 05:33:11 UTC 2014


Author: miwi
Date: Sun May 25 05:33:09 2014
New Revision: 355129
URL: http://svnweb.freebsd.org/changeset/ports/355129
QAT: https://qat.redports.org/buildarchive/r355129/

Log:
  mod_realdoc is an Apache module which does a realpath on the docroot
  symlink and sets the absolute path as the real document root for the
  remainder of the request.
  
  WWW: https://github.com/etsy/mod_realdoc
  
  PR:		ports/180364
  Submitted by:	Gea-Suan Lin <gslin at gslin.org>

Added:
  head/www/mod_realdoc/
  head/www/mod_realdoc/Makefile   (contents, props changed)
  head/www/mod_realdoc/distinfo   (contents, props changed)
  head/www/mod_realdoc/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun May 25 05:31:13 2014	(r355128)
+++ head/www/Makefile	Sun May 25 05:33:09 2014	(r355129)
@@ -517,6 +517,7 @@
     SUBDIR += mod_python33
     SUBDIR += mod_python35
     SUBDIR += mod_qos
+    SUBDIR += mod_realdoc
     SUBDIR += mod_remoteip
     SUBDIR += mod_reproxy
     SUBDIR += mod_rivet

Added: head/www/mod_realdoc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/mod_realdoc/Makefile	Sun May 25 05:33:09 2014	(r355129)
@@ -0,0 +1,21 @@
+# Created by: Gea-Suan Lin <gslin at gslin.org>
+# $FreeBSD$
+
+PORTNAME=	mod_realdoc
+PORTVERSION=	20130701
+CATEGORIES=	www
+MASTER_SITES=	GH \
+		http://freebsd.cs.nctu.edu.tw/~gslin/files/
+
+MAINTAINER=	gslin at gslin.org
+COMMENT=	Apache module to support atomic deploys
+
+AP_FAST_BUILD=	yes
+AP_GENPLIST=	yes
+GH_ACCOUNT=	etsy
+GH_COMMIT=	4925acc
+GH_TAGNAME=	${GH_COMMIT}
+USE_APACHE=	22+
+USE_GITHUB=	yes
+
+.include <bsd.port.mk>

Added: head/www/mod_realdoc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/mod_realdoc/distinfo	Sun May 25 05:33:09 2014	(r355129)
@@ -0,0 +1,2 @@
+SHA256 (mod_realdoc-20130701.tar.gz) = 8ccb15b10b61955fbbb479f05bc5c159d3b68abab284a91afb8cd013b728945c
+SIZE (mod_realdoc-20130701.tar.gz) = 3177

Added: head/www/mod_realdoc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/mod_realdoc/pkg-descr	Sun May 25 05:33:09 2014	(r355129)
@@ -0,0 +1,5 @@
+mod_realdoc is an Apache module which does a realpath on the docroot
+symlink and sets the absolute path as the real document root for the
+remainder of the request.
+
+WWW: https://github.com/etsy/mod_realdoc


More information about the svn-ports-all mailing list