1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/Mk/Uses/ada.mk
Gerald Pfeifer 5b4f2ad658 Move MAINTAINER lines to the end of the initial comment block and
make things a bit more consistent.

Approved by:	portmgr (bapt)
2014-03-15 10:31:54 +00:00

30 lines
772 B
Makefile

# $FreeBSD$
#
# Establish Ada-capable compiler as a build dependency
#
# Feature: ada
# Usage: USES=ada
# Valid ARGS: 47
#
# MAINTAINER: marino@FreeBSD.org
.if !defined(_INCLUDE_USES_ADA_MK)
_INCLUDE_USES_ADA_MK= yes
CC= ada
. if defined(ada_ARGS) && ${ada_ARGS} == 47
BUILD_DEPENDS+= ${LOCALBASE}/gcc47-aux/bin/ada:${PORTSDIR}/lang/gcc47-aux
MAKE_ENV+= PATH=${LOCALBASE}/gcc47-aux/bin:${PATH}
CONFIGURE_ENV+= PATH=${LOCALBASE}/gcc47-aux/bin:${PATH}
. else
BUILD_DEPENDS+= ${LOCALBASE}/gcc-aux/bin/ada:${PORTSDIR}/lang/gcc-aux
MAKE_ENV+= PATH=${LOCALBASE}/gcc-aux/bin:${PATH}
CONFIGURE_ENV+= PATH=${LOCALBASE}/gcc-aux/bin:${PATH}
. endif
MAKE_ENV+= ADA_PROJECT_PATH=${LOCALBASE}/lib/gnat
CONFIGURE_ENV+= ADA_PROJECT_PATH=${LOCALBASE}/lib/gnat
.endif