1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-28 10:08:24 +00:00
freebsd-ports/devel/ahven/Makefile
John Marino 591e93e799 marino 12 devel ports: Remove @dirrm, tend install commands, plus
The main purpose of this commit is to remove @dirrm from the pkg-plist of
some of my ports in devel category.  While here, also:
  * Unmask some commands
  * Use parenthesis on compound commands for multi-job support
  * Add a license in one case
  * USES=python conversion in one case
  * Add WWW and reformat description in one case
  * Respect 80-columns
2014-10-16 10:36:14 +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}
USES+= python:build
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>