aboutsummaryrefslogtreecommitdiffstats
path: root/security/newpki-lib/Makefile
blob: e19ded2941934bbd1c61323c92340026e9ea3311 (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
# New ports collection makefile for:    newpki-lib
# Date created:     2005-07-05
# Whom:         Vsevolod Stakhov <vsevolod@highsecure.ru>
#
# $FreeBSD$
#

PORTNAME=   newpki-lib
DISTVERSION=    2.0.0-beta4
PORTREVISION=   2
CATEGORIES= security devel
MASTER_SITES=   SF/newpki/${PORTNAME}/2.0.0-beta4

MAINTAINER= ports@FreeBSD.org
COMMENT=    C++ PKI libraries from newpki project

WRKSRC=     ${WRKDIR}/${PORTNAME}-2.0.0

USE_OPENSSL=    yes
USE_GMAKE=  yes
USE_LDCONFIG=   yes

CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS+=    --includedir=${PREFIX}/include/newpki

.if defined(WITHOUT_NLS)
BROKEN=     does not build without gettext
PLIST_SUB+= NLS="@comment "
CONFIGURE_ARGS+=    --disable-nls
.else
USE_GETTEXT=    yes
PLIST_SUB+= NLS=""
CONFIGURE_ARGS+=    --with-libintl-prefix=${LOCALBASE}
.endif

GNU_CONFIGURE=  yes

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 700019
BROKEN=     does not compile with OpenSSL 0.9.8b
.endif

pre-patch:
    @${FIND} ${WRKSRC} -name '*.cpp' -or -name '*.h' | ${XARGS} ${REINPLACE_CMD} -e 's|
||g'

post-patch:
    @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure

.include <bsd.port.post.mk>