Index: head/lang/mono/Makefile =================================================================== --- head/lang/mono/Makefile (revision 282139) +++ head/lang/mono/Makefile (revision 282140) @@ -1,79 +1,79 @@ # New ports collection makefile for: mono # Date created: 22 July 2002 # Whom: Yukihiro Nakai # # $FreeBSD$ # PORTNAME= mono -PORTVERSION= 2.10.2 +PORTVERSION= 2.10.5 CATEGORIES= lang -MASTER_SITES= http://ftp.novell.com/pub/mono/sources/${PORTNAME}/ +MASTER_SITES= http://download.mono-project.com/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 \ bash:${PORTSDIR}/shells/bash USE_BZIP2= yes USE_BISON= build USE_GNOME= gnomehack glib20 USE_GMAKE= yes USE_PERL5_BUILD= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_GETTEXT= yes MAKE_JOBS_UNSAFE=yes # Moonlight is installed as part of www/moonlight CONFIGURE_ARGS= --with-moonlight=no # 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 ppc MAN1= al.1 ccrewrite.1 cert2spc.1 certmgr.1 chktrust.1 cilc.1 \ csharp.1 disco.1 dtd2xsd.1 gacutil.1 genxs.1 httpcfg.1 \ ilasm.1 lc.1 macpack.1 makecert.1 mconfig.1 mcs.1 \ mdassembler.1 mdoc-assemble.1 mdoc-export-html.1 \ mdoc-export-msxdoc.1 mdoc-update.1 mdoc-validate.1 mdoc.1 \ mdvalidater.1 mkbundle.1 mono-api-info.1 mono-cil-strip.1 \ mono-configuration-crypto.1 mono-service.1 mono-shlib-cop.1 \ mono-xmltool.1 mono.1 monodis.1 monodocer.1 monodocs2html.1 \ monolinker.1 monop.1 mozroots.1 pdb2mdb.1 permview.1 \ prj2make.1 resgen.1 secutil.1 setreg.1 sgen.1 signcode.1 sn.1 \ soapsuds.1 sqlsharp.1 wsdl.1 xbuild.1 xsd.1 MAN5= mdoc.5 mono-config.5 .include pre-everything:: @${CAT} ${PKGMESSAGE} post-patch: @${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 @${FIND} ${WRKSRC} -name '*.sh' | ${XARGS} ${REINPLACE_CMD} \ -e 's|^#!/bin/bash|#!/bin/sh|g' 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 "${PORTSDIR}/lang/mono/bsd.mono.mk" .include Property changes on: head/lang/mono/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.98 \ No newline at end of property +1.99 \ No newline at end of property Index: head/lang/mono/distinfo =================================================================== --- head/lang/mono/distinfo (revision 282139) +++ head/lang/mono/distinfo (revision 282140) @@ -1,2 +1,2 @@ -SHA256 (mono-2.10.2.tar.bz2) = 9614472aa131e61bcdbf2fc48ab7a123ea57a10e736def5136a478465afa06b4 -SIZE (mono-2.10.2.tar.bz2) = 33737282 +SHA256 (mono-2.10.5.tar.bz2) = a80c644862541f403f8d51a3b7c71c47b6567614884639c2d890e27fa9efaf16 +SIZE (mono-2.10.5.tar.bz2) = 33940775 Property changes on: head/lang/mono/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.40 \ No newline at end of property +1.41 \ No newline at end of property Index: head/lang/mono/files/patch-mono_utils_mono-sigcontext.h =================================================================== --- head/lang/mono/files/patch-mono_utils_mono-sigcontext.h (nonexistent) +++ head/lang/mono/files/patch-mono_utils_mono-sigcontext.h (revision 282140) @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- mono/utils/mono-sigcontext.h.orig ++++ mono/utils/mono-sigcontext.h +@@ -109,6 +109,10 @@ + #define UCONTEXT_REG_RSI(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_rsi) + #define UCONTEXT_REG_RDI(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_rdi) + #define UCONTEXT_REG_RIP(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_rip) ++ #define UCONTEXT_REG_R8(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_r8) ++ #define UCONTEXT_REG_R9(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_r9) ++ #define UCONTEXT_REG_R10(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_r10) ++ #define UCONTEXT_REG_R11(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_r11) + #define UCONTEXT_REG_R12(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_r12) + #define UCONTEXT_REG_R13(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_r13) + #define UCONTEXT_REG_R14(ctx) (((ucontext_t*)(ctx))->uc_mcontext.mc_r14) Property changes on: head/lang/mono/files/patch-mono_utils_mono-sigcontext.h ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.3 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property