freebsd-ports/devel/gwenhywfar/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

68 lines
1.7 KiB
Makefile

# 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_AUTOTOOLS= libtool: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>