aboutsummaryrefslogtreecommitdiffstats
path: root/security/openscep/Makefile
blob: b3e478f32aba4fb4f485b425baf1918772b75ab7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# New ports collection makefile for:    openscep
# Date created:     May 19 2005
# Whom:         Vsevolod Stakhov
#
# $FreeBSD$
#

PORTNAME=   openscep
PORTVERSION=    0.4.2
PORTREVISION=   6
CATEGORIES= security
MASTER_SITES=   http://openscep.othello.ch/download/

MAINTAINER= ports@FreeBSD.org
COMMENT=    Open source scep server

MAKE_JOBS_SAFE= yes

USE_AUTOTOOLS=  libtool
USE_OPENSSL=    yes
USE_OPENLDAP=   yes
USE_APACHE= 1.3+
GNU_CONFIGURE=  yes
USE_GMAKE=  yes
USE_LDCONFIG=   yes

.include <bsd.port.pre.mk>

.if ${APACHE_VERSION} > 13
PLIST_DIRSTRY=  www/cgi-bin
.endif

CPPFLAGS+=  -I${LOCALBASE}/include
CONFIGURE_ENV=  CPPFLAGS=${CPPFLAGS} LIBS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --with-html-install-dir="${PREFIX}/www/openscep" \
        --with-cgi-install-dir="${PREFIX}/www/cgi-bin/openscep" \
        --with-openscep-dir="${PREFIX}/etc/openscep" \
        --with-pkiclientexe="${PREFIX}/www/cgi-bin/pkiclient.exe"
MAKE_ENV=   CPPFLAGS=${CPPFLAGS}

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_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

post-install:
    ${MKDIR} ${CONF_DIR}
    ${INSTALL_DATA} ${WRKSRC}/openssl/openscep.cnf ${CONF_DIR}/openscep.cnf.default
.for f in openscep.ldif openscep.schema slapd.conf
    ${INSTALL_DATA} ${WRKSRC}/ldap/${f} ${CONF_DIR}/${f}.default
.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>