54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
42 lines
867 B
Makefile
42 lines
867 B
Makefile
# New ports collection makefile for: gnat-glade
|
|
# Date created: 3 May 2000
|
|
# Whom: sam@inf.enst.fr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnat-glade
|
|
PORTVERSION= 3.15p
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://cs.nyu.edu/pub/gnat/${PORTVERSION}/glade/
|
|
DISTNAME= glade-${PORTVERSION}-src
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNU Ada distributed systems annex
|
|
|
|
BUILD_DEPENDS= adagcc:${PORTSDIR}/lang/gnat
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 500039
|
|
WITHOUT_CPU_CFLAGS= yes
|
|
.endif
|
|
USE_AUTOTOOLS= automake:14 autoconf:213
|
|
CONFIGURE_ENV= ADA=adagcc
|
|
USE_GMAKE= yes
|
|
USE_PERL5_BUILD=yes
|
|
|
|
ADACFLAGS?=
|
|
CFLAGS=${ADACFLAGS}
|
|
|
|
pre-configure:
|
|
${PERL} -pi -e "s@aclocal\)@${ACLOCAL})@g;\
|
|
s@automake\)@${AUTOMAKE})@g" ${WRKSRC}/aclocal.m4
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${PREFIX}/bin/gnatdist
|
|
|
|
.include <bsd.port.post.mk>
|