[rs-commit] r334 - in /rs-distribution/trunk/freebsd/ports: mod_ca/ mod_crl/ mod_csr/ mod_ocsp/ mod_pkcs12/ mod_scep/ mod_spkac/ mod_timestamp/ redwax/

rs-commit at redwax.eu rs-commit at redwax.eu
Thu Mar 12 15:11:38 CET 2020


Author: dirkx at redwax.eu
Date: Thu Mar 12 15:11:37 2020
New Revision: 334

Log:
Ready to update; new versions

Modified:
    rs-distribution/trunk/freebsd/ports/mod_ca/Makefile
    rs-distribution/trunk/freebsd/ports/mod_ca/distinfo
    rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr
    rs-distribution/trunk/freebsd/ports/mod_crl/Makefile
    rs-distribution/trunk/freebsd/ports/mod_crl/distinfo
    rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr
    rs-distribution/trunk/freebsd/ports/mod_csr/Makefile
    rs-distribution/trunk/freebsd/ports/mod_csr/distinfo
    rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr
    rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile
    rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo
    rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr
    rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile
    rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr
    rs-distribution/trunk/freebsd/ports/mod_scep/Makefile
    rs-distribution/trunk/freebsd/ports/mod_scep/distinfo
    rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr
    rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile
    rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo
    rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr
    rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile
    rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr
    rs-distribution/trunk/freebsd/ports/redwax/Makefile
    rs-distribution/trunk/freebsd/ports/redwax/pkg-descr

Modified: rs-distribution/trunk/freebsd/ports/mod_ca/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ca/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_ca/Makefile	Thu Mar 12 15:11:37 2020
@@ -2,30 +2,28 @@
 # $FreeBSD: $
 
 PORTNAME=	mod_ca
-PORTVERSION=	0.2.1
+PORTVERSION=	0.2.2
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax core apache module
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+
+USES=		apache:2.2+ pkgconfig ssl
+
+LDAP_USE=	openldap=yes
+USE_OPENLDAP=	yes
+
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/mod_ca/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
+.include <bsd.port.pre.mk>
+
+.if !exists(${LOCALBASE}/lib/apr-util-1/apr_ldap.so)
+IGNORE= mod_ca_ldap requires APR with LDAP support. \
+	Please rebuild APR with LDAP support
 .endif
 
-.include <bsd.port.mk>
-
-info:
-	echo ${RUN_DEPENDS}
+.include <bsd.port.post.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_ca/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ca/distinfo	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_ca/distinfo	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576357521
-SHA256 (mod_ca-0.2.1.tar.gz) = 2cc622d40d542b0071e5cc4a98ec62b84d359d296e3fb88bd062eaf6b3bcaadf
-SIZE (mod_ca-0.2.1.tar.gz) = 129029
+TIMESTAMP = 1584020076
+SHA256 (mod_ca-0.2.2.tar.gz) = 1af9e7fdbb9e22e229d3f74ac220d1778a9f8334b6bbf87322e74535f232463f
+SIZE (mod_ca-0.2.2.tar.gz) = 130093

Modified: rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,18 @@
-Installs the mod_ca and any additional modules from redwax.
+Core mod_ca modules; that provide cryptographic and PKI services to other
+redwax modules.
+
+mod_ca_crl:    Backend module that reads a Certificate Revocation List from
+               disk and exposes it via mod_crl or mod_ocsp.
+mod_ca_disk:   Backend module that stores and serves certificates from a
+               directory on disk compatible with an OpenSSL CA.
+mod_ca_engine: Backend module that signs and issues certificates based
+               on a key stored in an HSM provided by the OpenSSL
+               Engine interface.
+mod_ca_ldap:   Backend module that verifies permission to issue a
+               certificate and to store a certificate once issued.
+mod_ca_simple: Backend module that signs and issues certificates base
+               on a key stored on disk.
+mod_ca: Provides the API that allows the backend and frontend modules to be
+               combined with one another.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/mod_crl/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_crl/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_crl/Makefile	Thu Mar 12 15:11:37 2020
@@ -2,30 +2,20 @@
 # $FreeBSD: $
 
 PORTNAME=	mod_crl
-PORTVERSION=	0.2.1
+PORTVERSION=	0.2.2
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax apache module - serve CRLs from your webserver
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+ 
+BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
 
-BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+USES=		apache:2.2+
 
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/${PORTNAME}/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
-.endif
-
 .include <bsd.port.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_crl/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_crl/distinfo	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_crl/distinfo	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576357672
-SHA256 (mod_crl-0.2.1.tar.gz) = 46fe2f7b3003e01f0ec0acd60eb99541b0727270a334d3fdf80d2fa28ac5d14c
-SIZE (mod_crl-0.2.1.tar.gz) = 92468
+TIMESTAMP = 1584022747
+SHA256 (mod_crl-0.2.2.tar.gz) = ab6167366c7f5a15550144106634c458a67f206e542460463e7deccd89159631
+SIZE (mod_crl-0.2.2.tar.gz) = 92482

Modified: rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,4 @@
-Installs the mod_crl and any additional modules from redwax.
+mod_crl - Exposes an RFC5280 Certificate Revocation List at the given URL
+from your normal apache web server.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/mod_csr/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_csr/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_csr/Makefile	Thu Mar 12 15:11:37 2020
@@ -2,30 +2,20 @@
 # $FreeBSD: $
 
 PORTNAME=	mod_csr
-PORTVERSION=	0.2.1
+PORTVERSION=	0.2.3
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax apache module to handle certificate signing requests
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+ 
+BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
 
-BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+USES=		apache:2.2+
 
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/${PORTNAME}/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
-.endif
-
 .include <bsd.port.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_csr/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_csr/distinfo	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_csr/distinfo	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576357673
-SHA256 (mod_csr-0.2.1.tar.gz) = 4a263916b87f6119bc34b0bc725714108322e162a2d5acb5690db279c0de4d07
-SIZE (mod_csr-0.2.1.tar.gz) = 95957
+TIMESTAMP = 1584022797
+SHA256 (mod_csr-0.2.3.tar.gz) = fdf0d4c97bbdebe725c9c3ff1fe7ed92ac03800dd93eccf7e5a31040306092dc
+SIZE (mod_csr-0.2.3.tar.gz) = 99657

Modified: rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,4 @@
-Installs the mod_csr and any additional modules from redwax.
+mod_csr - Exposes an enpoint that can process a Certificate Sign Request and
+return a certificate from your normal apache webserver.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile	Thu Mar 12 15:11:37 2020
@@ -2,30 +2,20 @@
 # $FreeBSD: $
 
 PORTNAME=	mod_ocsp
-PORTVERSION=	0.2.1
+PORTVERSION=	0.2.2
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax apache module to serve OCSP requests
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+ 
+BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
 
-BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+USES=		apache:2.2+
 
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/${PORTNAME}/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
-.endif
-
 .include <bsd.port.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576357681
-SHA256 (mod_ocsp-0.2.1.tar.gz) = 208afd383674777bf98a8f2cb6049a1dd714ed01fe55b0ec44aee5694a548fef
-SIZE (mod_ocsp-0.2.1.tar.gz) = 97486
+TIMESTAMP = 1584023402
+SHA256 (mod_ocsp-0.2.2.tar.gz) = 365b7c915d6f27f968ca17214ba9fd761591a01e4b781b11e0013f528719c573
+SIZE (mod_ocsp-0.2.2.tar.gz) = 97966

Modified: rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,5 @@
-Installs the mod_ocsp and any additional modules from redwax.
+mod_ocsp - Exposes an endpoint to respond to RFC6960 Online
+Certificate Status Protocol requests from your normal
+apache webserver.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile	Thu Mar 12 15:11:37 2020
@@ -4,28 +4,18 @@
 PORTNAME=	mod_pkcs12
 PORTVERSION=	0.2.1
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax apache module to issue signed certificates in PKCS12 format
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+ 
+BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
 
-BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+USES=		apache:2.2+
 
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/${PORTNAME}/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
-.endif
-
 .include <bsd.port.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,4 @@
-Installs the mod_pkcs12 and any additional modules from redwax.
+mod_pkcs12 - Exposes an enpoint that can generate a certificate
+and key returned as PKCS12 from your normal apache webserver.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/mod_scep/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_scep/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_scep/Makefile	Thu Mar 12 15:11:37 2020
@@ -2,30 +2,20 @@
 # $FreeBSD: $
 
 PORTNAME=	mod_scep
-PORTVERSION=	0.2.1
+PORTVERSION=	0.2.3
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax apache module to handle SCEP requests
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+ 
+BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
 
-BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+USES=		apache:2.2+
 
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/${PORTNAME}/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
-.endif
-
 .include <bsd.port.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_scep/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_scep/distinfo	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_scep/distinfo	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576357682
-SHA256 (mod_scep-0.2.1.tar.gz) = 2e20c9fe99b504c3ebcbd802a435203c3fd67049de96b5157aadf469bcd98892
-SIZE (mod_scep-0.2.1.tar.gz) = 106454
+TIMESTAMP = 1584022967
+SHA256 (mod_scep-0.2.3.tar.gz) = 2c3fc5985a2a48d45795d9b52ce37b6258ee414ebdd94dd5068906143d6eadc6
+SIZE (mod_scep-0.2.3.tar.gz) = 110733

Modified: rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,4 @@
-Installs the mod_scep and any additional modules from redwax.
+mod_scep- Exposes an endpoint that can process a traditional SCEP request
+and return a certificate from your normal apache webserver.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile	Thu Mar 12 15:11:37 2020
@@ -2,30 +2,20 @@
 # $FreeBSD: $
 
 PORTNAME=	mod_spkac
-PORTVERSION=	0.2.1
+PORTVERSION=	0.2.2
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax apache module to handle SPKAC requests
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+ 
+BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
 
-BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+USES=		apache:2.2+
 
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/${PORTNAME}/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
-.endif
-
 .include <bsd.port.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576358176
-SHA256 (mod_spkac-0.2.1.tar.gz) = df5fb1c4acf3df6fcc87e2d68f3d7ac415169b2599a57db9129d9ecc7052d174
-SIZE (mod_spkac-0.2.1.tar.gz) = 97368
+TIMESTAMP = 1584023813
+SHA256 (mod_spkac-0.2.2.tar.gz) = 10c8c39a4c3cc9c31bfb3a2d4525d10141a22d524258a9410d22aeaf3c2af942
+SIZE (mod_spkac-0.2.2.tar.gz) = 97792

Modified: rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,4 @@
-Installs the mod_spkac and any additional modules from redwax.
+mod_spkac - Exposes an endpoint that can process a Signed Public Key and
+Challenge request and return a certificate from your normal apache webserver.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile	Thu Mar 12 15:11:37 2020
@@ -4,28 +4,18 @@
 PORTNAME=	mod_timestamp
 PORTVERSION=	0.2.1
 CATEGORIES=	www
-
 MASTER_SITES=	https://redwax.eu/dist/rs/
 
 MAINTAINER=	dirkx at webweaving.org
-COMMENT=	Redwax apache module
+COMMENT=	Redwax apache module to serve signed timestamps
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		apache:2.2+ 
+BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
 
-BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+USES=		apache:2.2+
 
 GNU_CONFIGURE=	yes
 
-.if defined(BOOTSTRAP)
-do-fetch:
-	${MKDIR} ${WRKDIR}
-	cd ${WRKDIR} && \
-	svn export https://source.redwax.eu/svn/redwax/rs/${PORTNAME}/trunk \
-		${DISTNAME}
-	cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
-.endif
-
 .include <bsd.port.mk>

Modified: rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1,3 +1,4 @@
-Installs the mod_timestamp and any additional modules from redwax.
+mod_timestamp - Exposes an RFC3161 Time Stamp Protocol endpoint for document
+timestamping from your normal apache webserver.
 
 WWW: http://redwax.eu/

Modified: rs-distribution/trunk/freebsd/ports/redwax/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/redwax/Makefile	(original)
+++ rs-distribution/trunk/freebsd/ports/redwax/Makefile	Thu Mar 12 15:11:37 2020
@@ -5,9 +5,10 @@
 PORTVERSION=	0.2.1
 CATEGORIES=	www
 
-
 MAINTAINER=	dirkx at webweaving.org
 COMMENT=	Redwax apache modules
+
+LICENSE=        APACHE20
 
 USES=		metaport apache:2.2+
 
@@ -17,4 +18,3 @@
 .include "${.CURDIR}/Makefile.options.desc"
 
 .include <bsd.port.mk>
-

Modified: rs-distribution/trunk/freebsd/ports/redwax/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/redwax/pkg-descr	(original)
+++ rs-distribution/trunk/freebsd/ports/redwax/pkg-descr	Thu Mar 12 15:11:37 2020
@@ -1 +1,3 @@
-Redwax..
+Redwax meta port - installs the redwax.eu PKI modules for apache.
+
+WWW: https://redwax.eu



More information about the rs-commit mailing list