mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
c93f29a107
Changelog: http://go-mono.com/archive/1.1.13.5/ - Fix my MASTER_SITE_SUBDIR - Fix pthread usage when running unit tests. - portlint I had said on the BSD# mailing list that I would probably enable amd64 in the port but I'm holding off on that until some EM64T issues are tracked down. [1] http://forge.novell.com/pipermail/bsd-sharp-list/2006-April/000813.html [2] http://forge.novell.com/pipermail/bsd-sharp-list/2006-April/000815.html
27 lines
869 B
Makefile
27 lines
869 B
Makefile
# New ports collection makefile for: Mono and it's consumers
|
|
# Date created: 15 October 2005
|
|
# Whom: Tom McLaughlin <tmclaugh@FreeBSD.org>
|
|
#
|
|
# bsd.mono.mk: accomodate the peculiarities of building C# ports within
|
|
# the FreeBSD ports system.
|
|
#
|
|
# $FreeBSD$
|
|
# $Id: bsd.mono.mk,v 1.12 2006/04/05 02:38:44 tmclau02 Exp $
|
|
#
|
|
|
|
# Set the location of the .wapi directory so we write to a location we
|
|
# can always assume to be writable.
|
|
MONO_SHARED_DIR=${WRKDIR}
|
|
CONFIGURE_ENV+=MONO_SHARED_DIR="${MONO_SHARED_DIR}"
|
|
MAKE_ENV+=MONO_SHARED_DIR="${MONO_SHARED_DIR}"
|
|
|
|
# Set the location that webaps served bp XSP should use.
|
|
XSP_DOCROOT=${PREFIX}/www/xsp
|
|
|
|
# Clean up the semaphore produced by the .wapi
|
|
post-install: mono-semdel
|
|
pre-clean: mono-semdel
|
|
|
|
mono-semdel:
|
|
@${SETENV} G_DEBUG="" MONO_SHARED_DIR="${MONO_SHARED_DIR}" ${LOCALBASE}/bin/mono-semdel 2> /dev/null || true
|