[rs-commit] r177 - in /rs-distribution/trunk/freebsd: ./ ports/ ports/mod_ca/ ports/mod_crl/ ports/mod_csr/ ports/mod_ocsp/ ports/mod_pkcs12/ ports/mod_scep/ ports/mod_spkac/ ports/mod_timestamp/ ports/redwax/
rs-commit at redwax.eu
rs-commit at redwax.eu
Mon Dec 9 14:13:53 CET 2019
Author: dirkx at redwax.eu
Date: Mon Dec 9 14:13:51 2019
New Revision: 177
Log:
Functional freebsd (and derivative ports) stubs
Added:
rs-distribution/trunk/freebsd/
rs-distribution/trunk/freebsd/README.md
rs-distribution/trunk/freebsd/ports/
rs-distribution/trunk/freebsd/ports/mod_ca/
rs-distribution/trunk/freebsd/ports/mod_ca/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_ca/distinfo
rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_ca/pkg-plist
rs-distribution/trunk/freebsd/ports/mod_crl/
rs-distribution/trunk/freebsd/ports/mod_crl/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_crl/distinfo
rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_crl/pkg-plist
rs-distribution/trunk/freebsd/ports/mod_csr/
rs-distribution/trunk/freebsd/ports/mod_csr/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_csr/distinfo
rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_csr/pkg-plist
rs-distribution/trunk/freebsd/ports/mod_ocsp/
rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo
rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-plist
rs-distribution/trunk/freebsd/ports/mod_pkcs12/
rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_pkcs12/distinfo
rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-plist
rs-distribution/trunk/freebsd/ports/mod_scep/
rs-distribution/trunk/freebsd/ports/mod_scep/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_scep/distinfo
rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_scep/pkg-plist
rs-distribution/trunk/freebsd/ports/mod_spkac/
rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo
rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-plist
rs-distribution/trunk/freebsd/ports/mod_timestamp/
rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile (with props)
rs-distribution/trunk/freebsd/ports/mod_timestamp/distinfo
rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr
rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-plist
rs-distribution/trunk/freebsd/ports/redwax/
rs-distribution/trunk/freebsd/ports/redwax/Makefile (with props)
rs-distribution/trunk/freebsd/ports/redwax/Makefile.options
rs-distribution/trunk/freebsd/ports/redwax/Makefile.options.desc
rs-distribution/trunk/freebsd/ports/redwax/pkg-descr
Added: rs-distribution/trunk/freebsd/README.md
==============================================================================
--- rs-distribution/trunk/freebsd/README.md (added)
+++ rs-distribution/trunk/freebsd/README.md Mon Dec 9 14:13:51 2019
@@ -0,0 +1,24 @@
+FreeBSD ports files.
+
+The modules are all available separate (which all have a declared dependency on <code>mod_ca</code>).
+
+The <code>redwax</code> module is a meta port that simply installs what is specified with the usual 'options' menu.
+
+## Bootstrap
+
+Note: not yet pegged to a stable release/versioned tar file. So there is a bootstrap
+process to fetch them straight from trunk or a tag:
+
+1. Fetch a copy; so it is in local dist and calculate the checksum
+
+ <pre>BOOTSTRAP=yes make makesume</pre>
+
+2. Update the distinfo file as/if needed.
+
+3. Then continue/restart the build as usual
+
+ <pre>make && sudo make install</pre>
+
+## Gotchas
+
+Until we have proper release versions - the uninstalls from a meta-port will be unclean.
Added: rs-distribution/trunk/freebsd/ports/mod_ca/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ca/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ca/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_ca
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+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/mod_ca/trunk \
+ ${DISTNAME}
+ cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
+.endif
+
+.include <bsd.port.mk>
+
+info:
+ echo ${RUN_DEPENDS}
Propchange: rs-distribution/trunk/freebsd/ports/mod_ca/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_ca/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_ca/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ca/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ca/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575230277
+SHA256 (mod_ca-0.00.tar.gz) = 65319023fabe425cf27511620a69a66cc01fcbbd874201ebed1b52db9e14d55d
+SIZE (mod_ca-0.00.tar.gz) = 536576
Added: rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ca/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_ca and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_ca/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ca/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ca/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1,7 @@
+%%APACHEINCLUDEDIR%%/mod_ca.h
+%%APACHEMODDIR%%/mod_ca.so
+%%APACHEMODDIR%%/mod_ca_crl.so
+%%APACHEMODDIR%%/mod_ca_disk.so
+%%APACHEMODDIR%%/mod_ca_engine.so
+%%APACHEMODDIR%%/mod_ca_ldap.so
+%%APACHEMODDIR%%/mod_ca_simple.so
Added: rs-distribution/trunk/freebsd/ports/mod_crl/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_crl/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_crl/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_crl
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= apache:2.2+
+
+BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+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>
Propchange: rs-distribution/trunk/freebsd/ports/mod_crl/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_crl/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_crl/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_crl/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_crl/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575234234
+SHA256 (mod_crl-0.00.tar.gz) = d393f3ac37133d31193991e10d7753973db89b82bb44eb34de48dfa8d36a977e
+SIZE (mod_crl-0.00.tar.gz) = 345600
Added: rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_crl/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_crl and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_crl/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_crl/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_crl/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+%%APACHEMODDIR%%/%%AP_MODULE%%
Added: rs-distribution/trunk/freebsd/ports/mod_csr/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_csr/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_csr/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_csr
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= apache:2.2+
+
+BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+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>
Propchange: rs-distribution/trunk/freebsd/ports/mod_csr/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_csr/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_csr/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_csr/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_csr/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575233510
+SHA256 (mod_csr-0.00.tar.gz) = e9afaa79fc6a120b24591d9a9c67597547833edcfd6a7fca075a05dd16b52143
+SIZE (mod_csr-0.00.tar.gz) = 367104
Added: rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_csr/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_csr and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_csr/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_csr/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_csr/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+%%APACHEMODDIR%%/%%AP_MODULE%%
Added: rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_ocsp
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= apache:2.2+
+
+BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+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>
Propchange: rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_ocsp/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ocsp/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575234284
+SHA256 (mod_ocsp-0.00.tar.gz) = 71d761c32c8115cac54587412355491d228a5fc2c51ce59a2c397bdbbee281ec
+SIZE (mod_ocsp-0.00.tar.gz) = 373248
Added: rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_ocsp and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_ocsp/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+%%APACHEMODDIR%%/%%AP_MODULE%%
Added: rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_pkcs12
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= apache:2.2+
+
+BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+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>
Propchange: rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_pkcs12/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_pkcs12/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_pkcs12/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_pkcs12/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575234300
+SHA256 (mod_pkcs12-0.00.tar.gz) = feb3cee1503b3666867e0bc3de7422c15e5d8fb5a3b251f5ecbfc16efc6315e0
+SIZE (mod_pkcs12-0.00.tar.gz) = 372224
Added: rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_pkcs12 and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_pkcs12/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+%%APACHEMODDIR%%/%%AP_MODULE%%
Added: rs-distribution/trunk/freebsd/ports/mod_scep/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_scep/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_scep/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_scep
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= apache:2.2+
+
+BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+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>
Propchange: rs-distribution/trunk/freebsd/ports/mod_scep/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_scep/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_scep/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_scep/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_scep/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575234310
+SHA256 (mod_scep-0.00.tar.gz) = 51fddd5554c7fff1216dd6124b43a51d9d80bd8ea907433d40716bad3145236a
+SIZE (mod_scep-0.00.tar.gz) = 428032
Added: rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_scep/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_scep and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_scep/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_scep/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_scep/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+%%APACHEMODDIR%%/%%AP_MODULE%%
Added: rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_spkac
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= apache:2.2+
+
+BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+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>
Propchange: rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_spkac/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_spkac/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575234319
+SHA256 (mod_spkac-0.00.tar.gz) = 7b80bd1c305afadd4d1df6d3797a53bab3e42bb4e49dba42abb4205f7074df5a
+SIZE (mod_spkac-0.00.tar.gz) = 367616
Added: rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_spkac and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_spkac/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+%%APACHEMODDIR%%/%%AP_MODULE%%
Added: rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,31 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= mod_timestamp
+PORTVERSION= 0.00
+CATEGORIES= www
+
+MASTER_SITES= https://redwax.eu
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache module
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= apache:2.2+
+
+BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+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>
Propchange: rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/mod_timestamp/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/mod_timestamp/distinfo
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_timestamp/distinfo (added)
+++ rs-distribution/trunk/freebsd/ports/mod_timestamp/distinfo Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575234328
+SHA256 (mod_timestamp-0.00.tar.gz) = 3fb958f346b90dad027ea0472518de8061c4dddf4ec90d412db2bd33a4d1e58d
+SIZE (mod_timestamp-0.00.tar.gz) = 358400
Added: rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1,3 @@
+Installs the mod_timestamp and any additional modules from redwax.
+
+WWW: http://redwax.eu/
Added: rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-plist
==============================================================================
--- rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-plist (added)
+++ rs-distribution/trunk/freebsd/ports/mod_timestamp/pkg-plist Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+%%APACHEMODDIR%%/%%AP_MODULE%%
Added: rs-distribution/trunk/freebsd/ports/redwax/Makefile
==============================================================================
--- rs-distribution/trunk/freebsd/ports/redwax/Makefile (added)
+++ rs-distribution/trunk/freebsd/ports/redwax/Makefile Mon Dec 9 14:13:51 2019
@@ -0,0 +1,20 @@
+# Created by: dirkx at webweaving.org
+# $FreeBSD: $
+
+PORTNAME= redwax
+PORTVERSION= 0.00
+CATEGORIES= www
+
+
+MAINTAINER= dirkx at webweaving.org
+COMMENT= Redwax apache modules
+
+USES= metaport apache:2.2+
+
+RUN_DEPENS= ${LOCALBASE}/${APACHEMODDIR}/mod_ca.so:www/mod_ca
+
+.include "${.CURDIR}/Makefile.options"
+.include "${.CURDIR}/Makefile.options.desc"
+
+.include <bsd.port.mk>
+
Propchange: rs-distribution/trunk/freebsd/ports/redwax/Makefile
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: rs-distribution/trunk/freebsd/ports/redwax/Makefile
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: rs-distribution/trunk/freebsd/ports/redwax/Makefile.options
==============================================================================
--- rs-distribution/trunk/freebsd/ports/redwax/Makefile.options (added)
+++ rs-distribution/trunk/freebsd/ports/redwax/Makefile.options Mon Dec 9 14:13:51 2019
@@ -0,0 +1,18 @@
+OPTIONS_MULTI=REDWAX
+REDWAX_DESC=Optional additional redwax modules
+
+OPTIONS_MULTI_REDWAX=MOD_CRL MOD_CSR MOD_OCSP \
+ MOD_PKCS12 MOD_SCEP MOD_SPKAC MOD_TIMESTAMP
+
+OPTIONS_DEFAULT=MOD_CRL MOD_CSR MOD_OCSP
+
+MOD_CRL_RUN_DEPENDS=${LOCALBASE}/${APACHEMODDIR}/mod_crl.so:www/mod_crl
+
+MOD_CSR_RUN_DEPENDS=${LOCALBASE}/${APACHEMODDIR}/mod_csr.so:www/mod_csr
+MOD_OCSP_RUN_DEPENDS=${LOCALBASE}/${APACHEMODDIR}/mod_ocsp.so:www/mod_ocsp
+
+MOD_PKCS12_RUN_DEPENDS=${LOCALBASE}/${APACHEMODDIR}/mod_pkcs12.so:www/mod_pkcs12
+MOD_SCEP_RUN_DEPENDS=${LOCALBASE}/${APACHEMODDIR}/mod_scep.so:www/mod_scep
+MOD_SPKAC_RUN_DEPENDS=${LOCALBASE}/${APACHEMODDIR}/mod_spkac.so:www/mod_spkac
+
+MOD_TIMESTAMP_RUN_DEPENDS+=${LOCALBASE}/${APACHEMODDIR}/mod_timestamp.so:www/mod_timestamp
Added: rs-distribution/trunk/freebsd/ports/redwax/Makefile.options.desc
==============================================================================
--- rs-distribution/trunk/freebsd/ports/redwax/Makefile.options.desc (added)
+++ rs-distribution/trunk/freebsd/ports/redwax/Makefile.options.desc Mon Dec 9 14:13:51 2019
@@ -0,0 +1,8 @@
+MOD_CRL_DESC= Certificate Revocation Lists
+MOD_CSR_DESC= Countersign certificate signing requests
+MOD_OCSP_DESC= Provide an Online Certificate Status Protocol service
+MOD_PKCS12_DESC= Handle PKCS#12 files
+MOD_SCEP_DESC= Provide certificates over the SCEP \
+ auto provisioning protocol
+MOD_SPKAC_DESC= Handle SPKAC (Netscape) certificate requests
+MOD_TIMESTAMP_DESC= Provide signed/timestamped services
Added: rs-distribution/trunk/freebsd/ports/redwax/pkg-descr
==============================================================================
--- rs-distribution/trunk/freebsd/ports/redwax/pkg-descr (added)
+++ rs-distribution/trunk/freebsd/ports/redwax/pkg-descr Mon Dec 9 14:13:51 2019
@@ -0,0 +1 @@
+Redwax..
More information about the rs-commit
mailing list