1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/devel/ahven/Makefile
John Marino 6f0ddd3c6b devel/ahven: Improve symbolic traceback functionality
Rather than show the lengthy and not helpful trace of the Ahven
Framework when a symbolic trace is shown, detect the start of this
infrastructure trace and truncate it there.  This helps debugging
greatly by removing a lot of noise.
2014-04-04 21:35:43 +00:00

46 lines
1.0 KiB
Makefile

# Created by: John Marino <marino@FreeBSD.org>
# $FreeBSD$
PORTNAME= ahven
PORTVERSION= 2.4
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= SF
MASTER_SITE_SUBDIR=${PORTNAME}/${PORTNAME}/Ahven%20${PORTVERSION}
MAINTAINER= marino@FreeBSD.org
COMMENT= Ada unit test framework
LICENSE= ISCL
BUILD_DEPENDS= adactl:${PORTSDIR}/lang/adacontrol
USES= ada
ALL_TARGET= build_all
MAKE_ENV+= OS_VERSION=unix
OPTIONS_DEFINE= TRACE DOCS
OPTIONS_DEFAULT=TRACE
NO_OPTIONS_SORT=yes
TRACE_DESC= Build with GNAT-specific symbolic tracing functionality
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
USE_PYTHON= yes
BUILD_DEPENDS+= sphinx-build:${PORTSDIR}/textproc/py-sphinx \
${PYTHON_PKGNAMEPREFIX}sphinxcontrib-adadomain>0:${PORTSDIR}/textproc/py-sphinxcontrib-adadomain
ALL_TARGET+= docs
.endif
.if ${PORT_OPTIONS:MTRACE}
EXTRA_PATCHES= ${FILESDIR}/extra-src_ahven-framework.adb
.endif
post-install:
@${RM} -rf ${STAGEDIR}${PREFIX}/share/doc/ahven/html/_sources
@${RM} ${STAGEDIR}${PREFIX}/share/doc/ahven/html/.buildinfo
.include <bsd.port.mk>