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.
40 lines
875 B
Makefile
40 lines
875 B
Makefile
# New ports collection makefile for: ecl
|
|
# Date created: 29 Januar 2004
|
|
# Whom: Julian Stecklina
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ecl
|
|
PORTVERSION= 0.9g
|
|
CATEGORIES= lang lisp
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ecls
|
|
|
|
MAINTAINER= der_julian@web.de
|
|
COMMENT= An ANSI Common Lisp implementation
|
|
|
|
LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4
|
|
|
|
INSTALLS_SHLIB= yes
|
|
LDCONFIG_DIRS= %%PREFIX%%/lib/ecl
|
|
|
|
# It should build and run on 64-bit architectures,
|
|
# but it is completely untested.
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
MAN1= ecl.1
|
|
INFO= ecl ecldev
|
|
|
|
USE_GMAKE= YES
|
|
USE_PERL5_BUILD=yes
|
|
GNU_CONFIGURE= YES
|
|
USE_AUTOTOOLS= libtool:13
|
|
CONFIGURE_ARGS= --with-asdf --with-tcp --with-system-gmp --enable-boehm=included
|
|
|
|
# We need to tell ECL where to find the GMP includes
|
|
# and libraries.
|
|
CONFIGURE_ENV= LDFLAGS=-L${PREFIX}/lib CFLAGS=-I${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|