mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
676b34a127
The mistake was completely on my part, I somehow connected the dots the wrong way in my head. The only exceptions (for now) are archivers/zstd and ports-mgmt/synth which were already picked up by new volunteers in the mean time.
29 lines
566 B
Makefile
29 lines
566 B
Makefile
# Created by: John Marino <marino@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= aunit
|
|
PORTVERSION= 2016
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://downloads.dragonlace.net/src/
|
|
DISTNAME= aunit-gpl-${PORTVERSION}-src
|
|
|
|
MAINTAINER= freebsd.contact@marino.st
|
|
COMMENT= Ada unit testing framework
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= gprbuild:devel/gprbuild
|
|
|
|
USES= ada gmake
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|LIBDIR|MYLIBDIR|' \
|
|
${WRKSRC}/lib/gnat/aunit_shared.gpr
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-install:
|
|
${RM} -r ${STAGEDIR}${PREFIX}/lib/gnat/manifests
|
|
|
|
.include <bsd.port.mk>
|