Update to Wine 4.11. This includes the following changes: - Updated version of the Mono engine, including Windows.Forms. - More DLLs are built as PE files by default. - Faster implementation of Slim Reader/Writer locks on Linux. - Initial support for enumerating display devices. - Various bug fixes. files/patch-dlls_kernel32_Makefile.in needs some adjustments due to slightly changed context, alas no functional changes. Approved by: dbn (blanket) [1]
30 lines
747 B
Makefile
30 lines
747 B
Makefile
# Created by: David Naylor <naylor.b.david@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wine-mono
|
|
DISTVERSION= 4.9.0
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://dl.winehq.org/wine/wine-mono/${DISTVERSION}/
|
|
PKGNAMESUFFIX= -devel
|
|
EXTRACT_SUFX= .msi
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= dbn@FreeBSD.org
|
|
COMMENT= Mono .NET implementation for Wine development branch (HTML support)
|
|
|
|
LICENSE= MIT GPLv2 LGPL20
|
|
LICENSE_COMB= multi
|
|
|
|
CONFLICTS_INSTALL= wine-mono-[0-9]*
|
|
|
|
NO_BUILD= yes
|
|
PLIST_SUB+= MONO_VERSION="${DISTVERSION}"
|
|
DATADIR= ${PREFIX}/share/wine
|
|
PLIST_FILES= ${DATADIR}/mono/wine-mono-${DISTVERSION}.msi
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/mono
|
|
${INSTALL_DATA} ${DISTDIR}/wine-mono-${DISTVERSION}.msi \
|
|
${STAGEDIR}${DATADIR}/mono
|
|
|
|
.include <bsd.port.mk>
|