ac935c3d5b
- More work towards the WineD3D command stream. - More WebServices reader support. - Still more Shader Model 5 support. - Support for gradients in metafiles. - Improved table formatting in WinHelp. - Various bug fixes. And it uses a new bug fix version of the Mono engine in form of the wine-mono-devel port which moves from version 4.6.0 to version 4.6.2.
28 lines
713 B
Makefile
28 lines
713 B
Makefile
# Created by: David Naylor <naylor.b.david@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wine-mono
|
|
DISTVERSION= 4.6.2
|
|
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
|
|
|
|
NO_BUILD= yes
|
|
PLIST_SUB+= MONO_VERSION="${DISTVERSION}"
|
|
DATADIR= ${PREFIX}/share/wine
|
|
PLIST_FILES= %%DATADIR%%/mono/wine-mono-%%MONO_VERSION%%.msi
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/mono
|
|
${INSTALL_DATA} ${DISTDIR}/wine-mono-${DISTVERSION}.msi \
|
|
${STAGEDIR}${DATADIR}/mono
|
|
|
|
.include <bsd.port.mk>
|