1998-12-24 19:11:50 +01:00
|
|
|
# New ports collection makefile for: erlang
|
|
|
|
# Date created: 11 Dec 1998
|
|
|
|
# Whom: ruslan@shevchenko.kiev.ua
|
|
|
|
#
|
1999-08-25 08:35:40 +02:00
|
|
|
# $FreeBSD$
|
1998-12-24 19:11:50 +01:00
|
|
|
#
|
|
|
|
|
2000-04-12 08:21:15 +02:00
|
|
|
PORTNAME= erlang
|
2007-12-23 22:57:50 +01:00
|
|
|
PORTVERSION= r12b0.1
|
2006-12-12 11:57:59 +01:00
|
|
|
PORTEPOCH= 1
|
2007-12-23 22:57:50 +01:00
|
|
|
CATEGORIES= lang parallel java
|
2004-12-22 16:31:14 +01:00
|
|
|
MASTER_SITES= http://www.erlang.org/download/ \
|
|
|
|
ftp://ftp.erlang.org/pub/download/ \
|
1999-02-26 06:01:25 +01:00
|
|
|
http://www.erlang.org/download/ \
|
1999-12-31 21:34:37 +01:00
|
|
|
http://erlang.stacken.kth.se/download/ \
|
|
|
|
http://www.csd.uu.se/ftp/mirror/erlang/download/
|
2007-12-23 22:57:50 +01:00
|
|
|
DISTNAME= otp_src_R12B-0
|
2000-04-12 08:21:15 +02:00
|
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${ERLANG_MAN} ${ERLANG_DOCS}
|
2004-02-29 17:52:37 +01:00
|
|
|
DIST_SUBDIR= erlang
|
2001-01-23 21:50:38 +01:00
|
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
1998-12-24 19:11:50 +01:00
|
|
|
|
2007-12-23 22:57:50 +01:00
|
|
|
PATCH_SITES= http://www.erlang.org/download/
|
|
|
|
PATCHFILES= otp_src_R12B-0-osp1.patch
|
|
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
|
2001-06-10 22:35:08 +02:00
|
|
|
MAINTAINER= olgeni@FreeBSD.org
|
2003-02-23 11:51:29 +01:00
|
|
|
COMMENT= A functional programming language from Ericsson
|
1999-12-31 21:34:37 +01:00
|
|
|
|
2006-05-09 14:12:25 +02:00
|
|
|
CONFLICTS?= erlang-lite-r[0-9]*
|
|
|
|
|
2006-12-12 14:49:02 +01:00
|
|
|
SUB_FILES= pkg-message
|
2007-05-29 01:49:30 +02:00
|
|
|
SUB_LIST= TOOLS_VSN=${TOOLS_VSN}
|
2006-12-12 14:49:02 +01:00
|
|
|
|
2006-02-05 00:52:18 +01:00
|
|
|
# The Java applications that are part of the Erlang distribution are
|
|
|
|
# not strictly necessary - it is included for completeness sake. A
|
|
|
|
# problem with the Erlang build procedure is that it only checks if
|
|
|
|
# javac is in the regular path - and then assumes that all of the jdk
|
|
|
|
# utilities is in the path as well. The only way to make sure that
|
|
|
|
# this is the case (that I could think of at least) was to make sure
|
|
|
|
# ${JAVA_HOME}/bin is added to the PATH, using the *_ENV macros.
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_JAVA)
|
2006-02-13 19:53:33 +01:00
|
|
|
USE_JAVA= yes
|
|
|
|
JAVA_VERSION= 1.4+
|
2006-02-05 00:52:18 +01:00
|
|
|
# Make sure ${JAVA_HOME}/bin is in the path
|
2006-12-12 11:57:16 +01:00
|
|
|
CONFIGURE_ENV+= PATH=${PATH}:${JAVA_HOME}/bin
|
|
|
|
MAKE_ENV+= PATH=${PATH}:${JAVA_HOME}/bin
|
|
|
|
SCRIPT_ENV+= PATH=${PATH}:${JAVA_HOME}/bin
|
2006-02-05 00:52:18 +01:00
|
|
|
.endif
|
|
|
|
|
2004-02-29 17:52:37 +01:00
|
|
|
.if !defined(WITHOUT_X11)
|
2007-04-03 00:56:15 +02:00
|
|
|
USE_TK_RUN= yes
|
2006-02-05 00:52:18 +01:00
|
|
|
.endif
|
|
|
|
|
2007-09-08 19:14:55 +02:00
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_PERL5= yes
|
|
|
|
USE_RC_SUBR= epmd.sh
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
REINPLACE_ARGS= -i
|
|
|
|
|
2006-02-05 00:52:18 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2006-03-20 20:54:30 +01:00
|
|
|
.if ${OSVERSION} < 502102
|
2006-02-05 00:52:18 +01:00
|
|
|
WITHOUT_ODBC= yes
|
2004-02-29 17:52:37 +01:00
|
|
|
.endif
|
|
|
|
|
2005-06-28 14:21:59 +02:00
|
|
|
.if !defined(WITHOUT_ODBC)
|
2006-12-12 11:57:16 +01:00
|
|
|
DRIVER_MANAGER?= iodbc
|
2005-06-28 14:21:59 +02:00
|
|
|
.if ${DRIVER_MANAGER} == "unixodbc"
|
2006-12-12 11:57:16 +01:00
|
|
|
LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC
|
2006-02-05 00:52:18 +01:00
|
|
|
.else # assume we're using iodbc
|
2006-12-12 11:57:16 +01:00
|
|
|
LIB_DEPENDS+= iodbc.3:${PORTSDIR}/databases/libiodbc
|
2005-06-28 14:21:59 +02:00
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
2007-12-23 22:57:50 +01:00
|
|
|
ERLANG_MAN= otp_doc_man_R12B-0.tar.gz
|
2001-01-23 21:50:38 +01:00
|
|
|
.if !defined(NOPORTDOCS)
|
2007-12-23 22:57:50 +01:00
|
|
|
ERLANG_DOCS= otp_doc_html_R12B-0.tar.gz
|
2001-01-23 21:50:38 +01:00
|
|
|
.endif
|
2006-02-05 00:52:18 +01:00
|
|
|
ERLANG_PLIST= ${WRKDIR}/pkg-plist
|
1998-12-24 19:11:50 +01:00
|
|
|
|
2003-06-23 17:51:31 +02:00
|
|
|
CONFIGURE_TARGET= # Empty
|
2006-11-25 17:47:07 +01:00
|
|
|
CONFIGURE_ARGS+= --enable-threads
|
2005-01-09 12:27:56 +01:00
|
|
|
NOPRECIOUSMAKEVARS= yes # Prevent exporting of "ARCH"
|
2002-11-03 21:16:29 +01:00
|
|
|
|
2006-12-12 11:57:16 +01:00
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
2006-12-12 14:49:02 +01:00
|
|
|
PLIST_SUB+= ERTS_VSN=${ERTS_VSN} TOOLS_VSN=${TOOLS_VSN}
|
2001-01-23 21:50:38 +01:00
|
|
|
|
2003-06-23 17:51:31 +02:00
|
|
|
# The man-pages are put (in spite of FreeBSD's port convention) in a private
|
|
|
|
# subdir. This is to avoid cluttering up the man page name space. Also the
|
|
|
|
# Erlang man pages are more of internal documentation using the man format than
|
|
|
|
# actual system man pages. (erl.1 and epmd.1 perhaps being the exception).
|
|
|
|
|
|
|
|
NOMANCOMPRESS= yes
|
|
|
|
|
2007-08-04 13:41:30 +02:00
|
|
|
MAN1PREFIX= ${PREFIX}/lib/erlang
|
|
|
|
MAN3PREFIX= ${PREFIX}/lib/erlang
|
|
|
|
MAN4PREFIX= ${PREFIX}/lib/erlang
|
|
|
|
MAN6PREFIX= ${PREFIX}/lib/erlang
|
2003-06-23 17:51:31 +02:00
|
|
|
|
2001-02-20 15:15:33 +01:00
|
|
|
pre-configure:
|
2006-02-05 00:52:18 +01:00
|
|
|
# Check if ${JAVAC} exists.
|
2001-02-20 15:15:33 +01:00
|
|
|
.if !defined(WITHOUT_JAVA)
|
2006-02-05 00:52:18 +01:00
|
|
|
@if [ ! -x ${JAVAC} ]; then \
|
|
|
|
${ECHO_MSG} ">> Error: cannot find ${JAVAC}."; \
|
2001-02-20 15:15:33 +01:00
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
.endif
|
|
|
|
|
2003-06-01 11:28:09 +02:00
|
|
|
# If X11 is not used, skip the gs application.
|
2002-03-31 12:23:43 +02:00
|
|
|
.if defined(WITHOUT_X11)
|
|
|
|
@${ECHO_CMD} "WITHOUT_X11 defined" > ${WRKSRC}/lib/gs/SKIP
|
|
|
|
.endif
|
|
|
|
|
2006-02-05 00:52:18 +01:00
|
|
|
# If ODBC is not used, skip the odbc application.
|
|
|
|
.if defined(WITHOUT_ODBC)
|
|
|
|
@${ECHO_CMD} "WITHOUT_ODBC defined" > ${WRKSRC}/lib/odbc/SKIP
|
|
|
|
.endif
|
|
|
|
|
1999-12-31 21:34:37 +01:00
|
|
|
# Install documentation. (HTML docs need to be in same dir as the
|
|
|
|
# rest, not in share/doc/erlang as it should, because of relative
|
|
|
|
# links in the documentation.
|
|
|
|
post-install:
|
2002-03-31 20:08:40 +02:00
|
|
|
@${LN} -sf ${LOCALBASE}/lib/erlang/lib/erl_interface-*/bin/erl_call ${LOCALBASE}/bin/erl_call
|
2001-02-20 15:15:33 +01:00
|
|
|
@${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_MAN} \
|
1999-12-31 21:34:37 +01:00
|
|
|
-C ${PREFIX}/lib/erlang
|
2002-03-31 12:23:43 +02:00
|
|
|
@${RM} -rf ${PREFIX}/lib/erlang/man/cat?
|
1999-12-31 21:34:37 +01:00
|
|
|
.if !defined(NOPORTDOCS)
|
2001-02-20 15:15:33 +01:00
|
|
|
@${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \
|
2002-03-31 12:23:43 +02:00
|
|
|
-C ${PREFIX}/lib/erlang
|
2006-11-25 17:47:07 +01:00
|
|
|
@${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \
|
|
|
|
${LOCALBASE}/lib/erlang/lib/dialyzer-*/doc/
|
1999-12-31 21:34:37 +01:00
|
|
|
.endif
|
2002-11-02 19:40:49 +01:00
|
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/erlang
|
2002-07-15 10:56:26 +02:00
|
|
|
@${CHMOD} -R o+rX-w,g+rX-w ${PREFIX}/lib/erlang
|
2002-11-13 11:38:23 +01:00
|
|
|
|
|
|
|
# All non-library files.
|
|
|
|
|
2002-11-13 10:05:31 +01:00
|
|
|
@cd ${PREFIX} ; ${FIND} lib/erlang/* -type f -o -type l \
|
2001-09-28 13:31:59 +02:00
|
|
|
| ${GREP} -v "^lib/erlang/man" \
|
2002-11-13 11:38:23 +01:00
|
|
|
| ${GREP} -v "^lib/erlang/lib" \
|
2004-01-22 12:06:02 +01:00
|
|
|
| ${SORT} \
|
2006-02-05 00:52:18 +01:00
|
|
|
> ${ERLANG_PLIST}
|
2002-11-13 11:38:23 +01:00
|
|
|
|
|
|
|
# Stock OTP libraries.
|
|
|
|
|
2002-11-16 01:20:07 +01:00
|
|
|
@for LIBRARY in ${OTP_LIBS}; do \
|
2002-11-13 11:38:23 +01:00
|
|
|
cd ${PREFIX} ; ${FIND} lib/erlang/lib/$${LIBRARY} -type f -o -type l; \
|
2006-02-05 00:52:18 +01:00
|
|
|
done | ${SORT} >> ${ERLANG_PLIST}
|
2002-11-13 11:38:23 +01:00
|
|
|
|
|
|
|
# Stock OTP library directories.
|
|
|
|
|
2005-01-29 14:51:43 +01:00
|
|
|
@for LIBRARY in ${OTP_LIBS}; do \
|
|
|
|
cd ${PREFIX} ; ${FIND} lib/erlang/lib/$${LIBRARY} -type d -empty \
|
2006-02-05 00:52:18 +01:00
|
|
|
| ${SED} -e 's#^#@exec ${MKDIR} %D/#g'; \
|
|
|
|
done | ${SORT} >> ${ERLANG_PLIST}
|
2005-01-29 14:51:43 +01:00
|
|
|
|
2002-11-16 01:20:07 +01:00
|
|
|
@for LIBRARY in ${OTP_LIBS}; do \
|
2002-11-13 11:38:23 +01:00
|
|
|
cd ${PREFIX} ; ${FIND} lib/erlang/lib/$${LIBRARY} -type d \
|
|
|
|
| ${SED} -e 's/^/@dirrm /g'; \
|
2006-02-05 00:52:18 +01:00
|
|
|
done | ${SORT} -r >> ${ERLANG_PLIST}
|
2002-11-13 11:38:23 +01:00
|
|
|
|
|
|
|
# Other directories.
|
|
|
|
|
2004-01-22 12:06:02 +01:00
|
|
|
@cd ${PREFIX} ; ${FIND} lib/erlang/* -type d | ${SORT} -r \
|
2001-09-28 13:31:59 +02:00
|
|
|
| ${GREP} -v "^lib/erlang/man" \
|
2002-11-13 11:38:23 +01:00
|
|
|
| ${GREP} -v "^lib/erlang/lib" \
|
2001-06-06 22:57:49 +02:00
|
|
|
| ${SED} -e 's/^/@dirrm /g' \
|
2006-02-05 00:52:18 +01:00
|
|
|
>> ${ERLANG_PLIST}
|
|
|
|
|
|
|
|
@${ECHO_CMD} "r ${TMPPLIST}" > ${WRKDIR}/ex.script
|
|
|
|
@${ECHO_CMD} "/Insert PLIST here" >> ${WRKDIR}/ex.script
|
|
|
|
@${ECHO_CMD} "d" >> ${WRKDIR}/ex.script
|
|
|
|
@${ECHO_CMD} "r ${ERLANG_PLIST}" >> ${WRKDIR}/ex.script
|
|
|
|
@${ECHO_CMD} "x!" >> ${WRKDIR}/ex.script
|
2001-06-06 22:57:49 +02:00
|
|
|
@cd ${WRKDIR} ; ex < ex.script
|
1999-12-31 21:34:37 +01:00
|
|
|
|
2002-11-13 11:38:23 +01:00
|
|
|
.include "Makefile.lib"
|
2002-11-02 19:40:49 +01:00
|
|
|
.include "Makefile.man"
|
2002-11-13 11:38:23 +01:00
|
|
|
|
2003-06-23 17:51:31 +02:00
|
|
|
.include <bsd.port.post.mk>
|