Move from the Wine 5.0 release serious to the Wine 6.0 series and
specifically Wine 6.0.1.
This represents another year of development effort and over 8,300
individual changes. It contains a large number of improvements.
Areas of major changes are:
- Core modules in PE format.
- Vulkan backend for WineD3D.
- DirectShow and Media Foundation support.
- Text console redesign.
In terms of packaging changes are moderate this time:
- As in case of 8c03aa8bb1
which has
sat with wine-devel for eight months remove
files/patch-dlls_kernel32_Makefile.in which is not needed any longer.
- Our special dependency emulators/wine-gecko goes to version 2.47.2
and emulators/wine-mono to version 5.1.1.
- The GLU library is not used any longer.
Extensive release notes are at https://www.winehq.org/announce/6.0
and https://www.winehq.org/announce/6.0.1 .
PR: 257284
31 lines
757 B
Makefile
31 lines
757 B
Makefile
# Created by: David Naylor <naylor.b.david@gmail.com>
|
|
|
|
PORTNAME= wine-mono
|
|
DISTVERSION= 5.1.1
|
|
DISTVERSIONSUFFIX=-x86
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://dl.winehq.org/wine/wine-mono/${DISTVERSION}/
|
|
EXTRACT_SUFX= .msi
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= gerald@FreeBSD.org
|
|
COMMENT= Mono .NET implementation for Wine
|
|
|
|
LICENSE= MIT GPLv2 LGPL20
|
|
LICENSE_COMB= multi
|
|
|
|
PORTSCOUT= ignore:1 # for newer versions see emulators/wine-mono-devel
|
|
|
|
CONFLICTS_INSTALL= wine-mono-devel-[0-9]*
|
|
|
|
NO_BUILD= yes
|
|
PLIST_SUB+= MONO_VERSION="${DISTVERSION}"
|
|
DATADIR= ${PREFIX}/share/wine
|
|
PLIST_FILES= ${DATADIR}/mono/${DISTNAME}.msi
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/mono
|
|
${INSTALL_DATA} ${DISTDIR}/${DISTNAME}.msi \
|
|
${STAGEDIR}${DATADIR}/mono
|
|
|
|
.include <bsd.port.mk>
|