svn commit: r361493 - in head/security/openscep: . files
Pawel Pekala
pawel at FreeBSD.org
Thu Jul 10 21:30:27 UTC 2014
Author: pawel
Date: Thu Jul 10 21:30:26 2014
New Revision: 361493
URL: http://svnweb.freebsd.org/changeset/ports/361493
QAT: https://qat.redports.org/buildarchive/r361493/
Log:
- Fix build on 10+ (new OpenSSL API)
- Add staging support, allow it as regular user
- Register conflict with security/nss (file ${LOCALBASE}/bin/derdump)
- Convert to USES=libtool
- Use @sample for config files
MFH: 2014Q3
Added:
head/security/openscep/files/patch-include_scep.h (contents, props changed)
head/security/openscep/files/patch-scepd_scepconf.c (contents, props changed)
Deleted:
head/security/openscep/files/pkg-deinstall.in
head/security/openscep/files/pkg-install.in
Modified:
head/security/openscep/Makefile
head/security/openscep/pkg-plist
Modified: head/security/openscep/Makefile
==============================================================================
--- head/security/openscep/Makefile Thu Jul 10 21:23:12 2014 (r361492)
+++ head/security/openscep/Makefile Thu Jul 10 21:30:26 2014 (r361493)
@@ -3,24 +3,21 @@
PORTNAME= openscep
PORTVERSION= 0.4.2
-PORTREVISION= 7
+PORTREVISION= 8
CATEGORIES= security
MASTER_SITES= http://openscep.othello.ch/download/
MAINTAINER= ports at FreeBSD.org
COMMENT= Open source scep server
+CONFLICTS_INSTALL= nss-3.*
-USE_AUTOTOOLS= libtool
+USES= gmake libtool
USE_OPENSSL= yes
USE_OPENLDAP= yes
USE_APACHE= 22+
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
-USES= gmake
-
-NO_STAGE= yes
-.include <bsd.port.pre.mk>
PLIST_DIRSTRY= www/cgi-bin
@@ -34,41 +31,33 @@ CONFIGURE_ARGS= --with-html-install-dir=
CONF_DIR= ${PREFIX}/etc/${PORTNAME}
LOCAL_CONF_FILES= openscep.cnf openscep.ldif openscep.schema slapd.conf
-SUB_FILES= pkg-deinstall pkg-install pkg-message
+SUB_FILES= pkg-message
SUB_LIST= CONF_DIR="${CONF_DIR}" CONF_FILES="${LOCAL_CONF_FILES}"
-MAN1= derdump.1 \
- scep.1 \
- scepclient.1 \
- scepconf.1 \
- sceplist.1 \
- scepxid.1
-MAN5= openscep.cnf.5
-MAN8= cafingerprint.8 \
- createcrl.8 \
- crl2ldap.8 \
- dn2xid.8 \
- scepd.8 \
- scepgrant.8 \
- scepreject.8 \
- updatecrl.8
-
post-patch:
@${REINPLACE_CMD} -e '/^subdirs=/ s|libltdl||' ${WRKSRC}/configure
@${REINPLACE_CMD} -e '/^SUBDIRS =/ s|libltdl||' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|^\(install-data-am:\) install-data-local$$|\1|' \
${WRKSRC}/ldap/Makefile.in ${WRKSRC}/openssl/Makefile.in
+ @${REINPLACE_CMD} 's,sbindir),DESTDIR)$$(&,' \
+ ${WRKSRC}/openssl/Makefile.in
+ @${REINPLACE_CMD} -E -e 's,(bin|sbin)dir},DESTDIR}$${&,' \
+ -e 's,-o \$$\(USER\) -g \$$\(GROUP\),,' \
+ ${WRKSRC}/scep/Makefile.in \
+ ${WRKSRC}/scepd/Makefile.in
+ @${REINPLACE_CMD} -E 's,(CGIINSTALLDIR|PKICLIENTEXE)),DESTDIR)$$(&,' \
+ ${WRKSRC}/cgi-bin/Makefile.in
+ @${REINPLACE_CMD} 's|HTMLINSTALLDIR)|DESTDIR)$$(&|' \
+ ${WRKSRC}/Makefile.in \
+ ${WRKSRC}/doc/Makefile.in \
+ ${WRKSRC}/html/Makefile.in
post-install:
- ${MKDIR} ${CONF_DIR}
- ${INSTALL_DATA} ${WRKSRC}/openssl/openscep.cnf ${CONF_DIR}/openscep.cnf.default
+ @${MKDIR} ${STAGEDIR}${CONF_DIR}
+ ${INSTALL_DATA} ${WRKSRC}/openssl/openscep.cnf \
+ ${STAGEDIR}${CONF_DIR}/openscep.cnf.sample
.for f in openscep.ldif openscep.schema slapd.conf
- ${INSTALL_DATA} ${WRKSRC}/ldap/${f} ${CONF_DIR}/${f}.default
+ ${INSTALL_DATA} ${WRKSRC}/ldap/${f} ${STAGEDIR}${CONF_DIR}/${f}.sample
.endfor
- ${CHOWN} www:www ${PREFIX}/www/cgi-bin/openscep/*
- ${CHOWN} www:www ${PREFIX}/www/cgi-bin/pkiclient.exe
- ${CHOWN} www:www ${PREFIX}/etc/openscep/*
- @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
- @${CAT} ${PKGMESSAGE}
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Added: head/security/openscep/files/patch-include_scep.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/openscep/files/patch-include_scep.h Thu Jul 10 21:30:26 2014 (r361493)
@@ -0,0 +1,14 @@
+--- include/scep.h.orig 2002-02-20 00:40:05.000000000 +0100
++++ include/scep.h 2014-07-10 22:24:29.366255595 +0200
+@@ -80,7 +80,11 @@
+ int recipientNonceLength;
+
+ /* OpenSSL configuration file contents */
++#ifdef LHASH_OF
++ LHASH_OF(CONF_VALUE) *conf;
++#else
+ LHASH *conf;
++#endif
+
+ /* signer/client information different from requestor for v2 */
+ X509 *selfsignedcert;
Added: head/security/openscep/files/patch-scepd_scepconf.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/openscep/files/patch-scepd_scepconf.c Thu Jul 10 21:30:26 2014 (r361493)
@@ -0,0 +1,14 @@
+--- scepd/scepconf.c.orig 2001-03-03 23:23:22.000000000 +0100
++++ scepd/scepconf.c 2014-07-10 22:26:24.326212726 +0200
+@@ -20,7 +20,11 @@
+ int debug = 0;
+
+ int main(int argc, char *argv[]) {
++#ifdef LHASH_OF
++ LHASH_OF(CONF_VALUE) *conf;
++#else
+ LHASH *conf;
++#endif
+ long eline;
+ char *section = NULL, *variable = NULL, *value;
+ int c, n;
Modified: head/security/openscep/pkg-plist
==============================================================================
--- head/security/openscep/pkg-plist Thu Jul 10 21:23:12 2014 (r361492)
+++ head/security/openscep/pkg-plist Thu Jul 10 21:30:26 2014 (r361493)
@@ -5,14 +5,33 @@ bin/scepconf
bin/scepkey
bin/sceplist
bin/scepxid
-etc/openscep/openscep.cnf.default
-etc/openscep/openscep.ldif.default
-etc/openscep/openscep.schema.default
-etc/openscep/slapd.conf.default
+ at owner www
+ at group www
+ at sample etc/openscep/openscep.cnf.sample
+ at sample etc/openscep/openscep.ldif.sample
+ at sample etc/openscep/openscep.schema.sample
+ at sample etc/openscep/slapd.conf.sample
+ at owner
+ at group
lib/libscep.a
-lib/libscep.la
lib/libscep.so
lib/libscep.so.4
+lib/libscep.so.4.0.22
+man/man1/derdump.1.gz
+man/man1/scep.1.gz
+man/man1/scepclient.1.gz
+man/man1/scepconf.1.gz
+man/man1/sceplist.1.gz
+man/man1/scepxid.1.gz
+man/man5/openscep.cnf.5.gz
+man/man8/cafingerprint.8.gz
+man/man8/createcrl.8.gz
+man/man8/crl2ldap.8.gz
+man/man8/dn2xid.8.gz
+man/man8/scepd.8.gz
+man/man8/scepgrant.8.gz
+man/man8/scepreject.8.gz
+man/man8/updatecrl.8.gz
sbin/cafingerprint
sbin/createcrl
sbin/crl2ldap
@@ -22,6 +41,8 @@ sbin/scepd
sbin/scepgrant
sbin/scepreject
sbin/updatecrl
+ at owner www
+ at group www
www/cgi-bin/openscep/add.pl
www/cgi-bin/openscep/crl.pl
www/cgi-bin/openscep/granted.pl
@@ -30,6 +51,8 @@ www/cgi-bin/openscep/pending.pl
www/cgi-bin/openscep/rejected.pl
www/cgi-bin/openscep/revoked.pl
www/cgi-bin/pkiclient.exe
+ at owner
+ at group
www/openscep/COPYING
www/openscep/ChangeLog
www/openscep/INSTALL
More information about the svn-ports-all
mailing list