openbsd-ports/lang/mono/mono.port.mk
robert 62d1eb4a9c Add MONO_SHARED_DIR=/tmp to the MAKE_FLAGS so the ports using this
module won't try to write to /root/.wapi
2008-10-24 14:49:44 +00:00

14 lines
352 B
Makefile

# $OpenBSD: mono.port.mk,v 1.3 2008/10/24 14:49:44 robert Exp $
CATEGORIES+= lang/mono
MAKE_FLAGS+= MONO_SHARED_DIR=/tmp
# A list of files where we have to remove the stupid hardcoded .[0-9] major
# version from library names.
DLLMAP_FILES?=
post-configure:
@for i in ${DLLMAP_FILES}; do \
perl -pi -e "s,.so.[0-9],.so,g" ${WRKSRC}/$$i; done