7bec73f569
construction of multi-language systems. It removes the complexity from multi-language development by allowing developers to quickly and easily compile and link software written in a combination of languages including Ada, Assembler, C, C++, and Fortran. Easily extendable by users to cover new toolchains and languages it is primarily aimed at projects of all sizes organized into subsystems and libraries and is particularly well suited for compiled languages. GPRbuild-AUX is a customized version of GPRbuild that exists solely for the use with the GNAT AUX compiler, and not with the FSF or GPL versions of the GNAT compiler. Homepage: www.dragonlace.net WWW: http://www.adacore.com/home/products/gnatpro/toolsuite/gprbuild/ PR: ports/153828 Submitted by: John Marino <freebsdml@marino.st>
35 lines
879 B
Makefile
35 lines
879 B
Makefile
# New ports collection makefile for: gprbuild-aux
|
|
# Date created: 12 December 2010
|
|
# Whom: John Marino <draco@marino.st>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gprbuild-aux
|
|
PORTVERSION= ${SNAPSHOT}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://downloads.dragonlace.net/src/ \
|
|
http://dragonlace.mirrors.ada.cx/src/
|
|
|
|
MAINTAINER= draco@marino.st
|
|
COMMENT= Adacore multi-language software build tool
|
|
|
|
BUILD_DEPENDS= gnat-aux>=20101204:${PORTSDIR}/lang/gnat-aux
|
|
BUILD_DEPENDS+= xmlada>=3.2:${PORTSDIR}/textproc/xmlada
|
|
|
|
EXAMPLESDIR= share/examples/gprbuild
|
|
DOCSDIR= share/doc/gprbuild
|
|
SNAPSHOT= 20101120
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_BZIP2= yes
|
|
CC= gnatgcc
|
|
MAKE_ENV+= ADA_PROJECT_PATH=${PREFIX}/lib/gnat
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|