mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
ab4b038114
- Update a bunch of c# ports as well (gtksharp20, mono-zeroconf, tomboy, gnome-desktop-sharp, gnomesharp20). - Remove devel/monodoc as it is now included in lang/mono. - Add www/mod_mono, an apache module serving ASP.net pages. - Add www/xsp, a mono-based webserver. PR: ports/135248, ports/135249 Submitted by: Romain Tartiere <romain@blogreen.org>
116 lines
3.7 KiB
Makefile
116 lines
3.7 KiB
Makefile
# New ports collection makefile for: mono
|
|
# Date created: 22 July 2002
|
|
# Whom: Yukihiro Nakai <nakai@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $Id: Makefile,v 1.98 2007/12/13 19:31:45 killfill Exp $
|
|
#
|
|
|
|
PORTNAME= mono
|
|
PORTVERSION= 2.4
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://ftp.novell.com/pub/mono/sources/${PORTNAME}/
|
|
|
|
MAINTAINER= mono@FreeBSD.org
|
|
COMMENT= An open source implementation of .NET Development Framework
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser
|
|
|
|
USE_BZIP2= yes
|
|
USE_BISON= build
|
|
USE_GNOME= gnomehack glib20
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_PERL5_BUILD= yes
|
|
LIBTOOLFILES= configure libgc/configure
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
|
|
PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
CONFIGURE_ARGS= --program-transform-name=\'\' \
|
|
--with-moonlinght=no \
|
|
--with-preview=yes \
|
|
--with-sigaltstack=no \
|
|
--mandir=${PREFIX}/man
|
|
MAKE_ARGS= EXTERNAL_MCS=false
|
|
|
|
# Set location for .wapi creation.
|
|
MONO_SHARED_DIR=${WRKDIR}
|
|
|
|
# LC_ALL is set in order to work around issues people are having when using
|
|
# other languages. This has shown itself in build fails and possibly other
|
|
# strange crashes.
|
|
MAKE_ENV= MONO_SHARED_DIR="${MONO_SHARED_DIR}" \
|
|
LC_ALL=C
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
MAN1= al.1 cert2spc.1 certmgr.1 chktrust.1 cilc.1 disco.1 dtd2xsd.1 \
|
|
gacutil.1 genxs.1 httpcfg.1 ilasm.1 jay.1 macpack.1 makecert.1 \
|
|
mconfig.1 mcs.1 mint.1 mkbundle.1 mono-service.1 mono-shlib-cop.1 \
|
|
mono-xmltool.1 mono.1 monodis.1 monolinker.1 monop.1 \
|
|
monostyle.1 mozroots.1 oldmono.1 permview.1 prj2make.1 secutil.1 \
|
|
setreg.1 sgen.1 signcode.1 sn.1 soapsuds.1 sqlsharp.1 wsdl.1 \
|
|
xsd.1 resgen.1
|
|
MAN5= mono-config.5
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
USE_FAM= yes
|
|
MAKE_ARGS+= MONO_GENERIC_SHARING=none #https://bugzilla.novell.com/show_bug.cgi?id=434457
|
|
.endif
|
|
|
|
pre-everything::
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.if exists(${LOCALBASE}/lib/libfam.so)
|
|
USE_FAM= yes
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/configure ${WRKSRC}/libgc/configure
|
|
@${REINPLACE_CMD} -e 's|%%CC%%|${CC}|g ; \
|
|
s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/mcs/tools/mkbundle/mkbundle.cs
|
|
@${REINPLACE_CMD} -e 's|libgamin-1.so.0|libgamin-1.so.1|g' \
|
|
${WRKSRC}/mcs/class/System/System.IO/FAMWatcher.cs
|
|
@${REINPLACE_CMD} -e 's|^#!/bin/bash|#!/bin/sh|g' \
|
|
${WRKSRC}/mcs/class/Managed.Windows.Forms/build-csproj \
|
|
${WRKSRC}/mcs/class/Managed.Windows.Forms/build-csproj2k5 \
|
|
${WRKSRC}/mcs/class/Mono.WebBrowser/build-csproj2k5 \
|
|
${WRKSRC}/mcs/class/Mono.Cairo/Samples/gtk/compile.sh \
|
|
${WRKSRC}/mcs/class/Mono.Cairo/Samples/png/compile.sh \
|
|
${WRKSRC}/mcs/class/Mono.Cairo/Samples/win32/compile.sh \
|
|
${WRKSRC}/mcs/class/Mono.Cairo/Samples/x11/compile.sh
|
|
@${REINPLACE_CMD} -e 's|^#!/bin/perl|#!/usr/bin/env perl|g' \
|
|
${WRKSRC}/mcs/errors/do-tests.pl \
|
|
${WRKSRC}/mcs/tools/scan-tests.pl \
|
|
${WRKSRC}/msvc/create-windef.pl \
|
|
${WRKSRC}/mono/benchmark/test-driver \
|
|
${WRKSRC}/mono/cil/make-opcodes-def.pl \
|
|
${WRKSRC}/mono/metadata/make-bundle.pl \
|
|
${WRKSRC}/mono/mini/genmdesc.pl \
|
|
${WRKSRC}/mono/tests/stress-runner.pl
|
|
|
|
.if ${OSVERSION} >= 700000 && ${OSVERSION} < 800000
|
|
@${REINPLACE_CMD} -e 's|freebsd6|freebsd7|g' \
|
|
${WRKSRC}/configure ${WRKSRC}/libgc/configure
|
|
.elif ${OSVERSION} >= 800000
|
|
@${REINPLACE_CMD} -e 's|freebsd6|freebsd8|g' \
|
|
${WRKSRC}/configure ${WRKSRC}/libgc/configure
|
|
.endif
|
|
|
|
tests: build
|
|
@${ECHO_MSG} "===> Running mono regression tests"
|
|
@(cd ${WRKSRC}/mono/tests && ${SETENV} ${MAKE_ENV} ${GMAKE} \
|
|
${MAKE_FLAGS} Makefile ${MAKE_ARGS} test)
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -e 's|share\/man|man|g' \
|
|
${WRKSRC}/mcs/jay/Makefile
|
|
|
|
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
|
|
.include <bsd.port.post.mk>
|