15 lines
406 B
Makefile
15 lines
406 B
Makefile
# $OpenBSD: mono.port.mk,v 1.6 2009/12/17 13:59:42 ajacoutot Exp $
|
|
|
|
CATEGORIES+= lang/mono
|
|
|
|
CONFIGURE_ENV+= MONO_SHARED_DIR=${TMPDIR}
|
|
MAKE_FLAGS+= MONO_SHARED_DIR=${TMPDIR}
|
|
|
|
# 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
|