blob: f5b0ff66762ab3fa66dd1f61d63cc29f1734fea0 (
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
|
# New ports collection makefile for: gwenhywfar
# Date created: 2005-05-05
# Whom: Peter Cornelius <pcc.at.gmx.net>
#
# $FreeBSD$
#
PORTNAME= gwenhywfar
PORTVERSION= 1.13.2
CATEGORIES= devel net security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= lawrance@FreeBSD.org
COMMENT= Multi-platform helper library for networking and security applications
OPTIONS= SSLDEBUG "Enable gwenhywfar SSL debug (if SSL enabled)" off \
MEMDEBUG "Enable memory debugger statistic" off
USE_LIBTOOL_VER=15
USE_GETTEXT= yes
USE_OPENSSL= yes
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
INSTALLS_SHLIB= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib/gwenhywfar/plugins/17/dbio
ALL_TARGET= all
# Examples to be installed from ${WRKSRC}/doc
EXAMPLE_FILES= STYLE \
apidoc.h \
db2.png \
plugindescr.xml \
plugindescr.xsd \
plugindescr.xsd.in \
testdialog.xml
.if !defined(NOPORTDOCS)
BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen
ALL_TARGET+= srcdoc
PORTDOCS=*
.endif
.include <bsd.port.pre.mk>
.if defined(WITH_SSLDEBUG)
# Enable appending of SSL connection in/output to /tmp/{read|written}.bin.
CFLAGS+= -DGWEN_SSL_DEBUG
.endif
# Enable printing of memory debugger statistic at runtime.
.if defined(WITH_MEMDEBUG)
CFLAGS+= -DGWEN_MEMORY_DEBUG
.endif
post-install:
.if !defined(NOPORTDOCS)
@${ECHO_CMD} Installing documentation...
${MKDIR} ${EXAMPLESDIR}
.for file in ${EXAMPLE_FILES}
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${EXAMPLESDIR}
.endfor
${MKDIR} ${DOCSDIR}
@cd ${WRKSRC} && ${FIND} apidoc -mindepth 1 \! -type d \
-exec ${ECHO_CMD} "{} -> ${DOCSDIR}/{}" \; \
-exec ${INSTALL_DATA} ${WRKSRC}/{} ${DOCSDIR} \;
.endif
.include <bsd.port.post.mk>
|