2005-11-10 05:17:26 +01:00
|
|
|
# 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$
|
2006-04-23 21:57:11 +02:00
|
|
|
# $Id: bsd.mono.mk,v 1.12 2006/04/05 02:38:44 tmclau02 Exp $
|
2005-11-10 05:17:26 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
# 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}"
|
|
|
|
|
2006-02-19 07:14:39 +01:00
|
|
|
# Set the location that webaps served bp XSP should use.
|
|
|
|
XSP_DOCROOT=${PREFIX}/www/xsp
|
2005-11-10 05:17:26 +01:00
|
|
|
|
|
|
|
# Clean up the semaphore produced by the .wapi
|
|
|
|
post-install: mono-semdel
|
|
|
|
pre-clean: mono-semdel
|
|
|
|
|
|
|
|
mono-semdel:
|
2006-02-19 07:14:39 +01:00
|
|
|
@${SETENV} G_DEBUG="" MONO_SHARED_DIR="${MONO_SHARED_DIR}" ${LOCALBASE}/bin/mono-semdel 2> /dev/null || true
|