100196f27a
Especially now that the default line is more verbose.
36 lines
911 B
Makefile
36 lines
911 B
Makefile
# $OpenBSD: Makefile,v 1.12 2001/10/28 13:05:47 espie Exp $
|
|
#
|
|
|
|
COMMENT= "Ericsson's high-level functional programming language"
|
|
|
|
VERSION= 47.4.0
|
|
DISTNAME= erlang-${VERSION}
|
|
CATEGORIES= lang
|
|
NEED_VERSION= 1.402
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://erlang.stacken.kth.se/download/ \
|
|
http://www.erlang.org/download/
|
|
EXTRACT_SUFX= .base.tar.gz
|
|
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= autoconf
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC} ${WRKSRC}/erts-${VERSION}/autoconf
|
|
|
|
ALL_TARGET= emulator new_libraries
|
|
|
|
# Move the rest of erlang configuration into the port configure step,
|
|
# not the build step.
|
|
#
|
|
post-configure:
|
|
@cd ${WRKSRC}/erts-47.4.0/autoconf && \
|
|
${SETENV} ${AUTOCONF_ENV} ${AUTOCONF}
|
|
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKE_FILE} autoconf )
|
|
|
|
.include <bsd.port.mk>
|