diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-08-29 07:17:25 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-08-29 07:17:41 +0000 |
commit | 18fcc610bf93b40517bdb3f3ba945659a70cb6d0 (patch) | |
tree | e82821e24130c7262d18b31df1516bc9b29d83cd | |
parent | 2713ca121b36719d305c745ebea9ce3b3eb543f1 (diff) |
emulators/i386-wine: Make the dependency on wine-mono generic
Instead of hard coding the actual version number use a generic
dependency on simply the port. This makes maintenance easier and
reduces the chance for mistakes.
This ports over commit dc73fd607fb79017cf74182613659ac9c4340bdd
from the emulators/wine port:
PR: 257630
-rw-r--r-- | emulators/i386-wine/Makefile.amd64 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/i386-wine/Makefile.amd64 b/emulators/i386-wine/Makefile.amd64 index 8925dac6dfda..8af03b14fc8a 100644 --- a/emulators/i386-wine/Makefile.amd64 +++ b/emulators/i386-wine/Makefile.amd64 @@ -41,7 +41,7 @@ GECKO_DESC= Bundle Gecko MSI package for Wine MONO_DESC= Bundle Mono MSI package for Wine GECKO_RUN_DEPENDS= ${DATADIR}/gecko/wine-gecko-2.47.1-x86.msi:emulators/wine-gecko -MONO_RUN_DEPENDS= ${DATADIR}/mono/wine-mono-5.1.1-x86.msi:emulators/wine-mono +MONO_RUN_DEPENDS= wine-mono>0:emulators/wine-mono do-extract: @${RM} -r ${WRKDIR} |