diff options
author | Alexander Vereeken <Alexander88207@protonmail.com> | 2023-08-18 21:57:12 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2023-08-18 21:57:12 +0000 |
commit | 3a2594ed6fc746dd3c5518c709d0d36e03b84bcd (patch) | |
tree | 87b400aeccbb6f4cee776dc612a98a96f71fa4b3 | |
parent | 6f144b23fba1cfb342a4dbe1b1847c0cc374d6a6 (diff) | |
download | ports-3a2594ed6fc746dd3c5518c709d0d36e03b84bcd.tar.gz ports-3a2594ed6fc746dd3c5518c709d0d36e03b84bcd.zip |
emulators/wine: Fix ALSA run-time dependency
The form libfoo.so:category/port only works for LIB_DEPENDS; for
RUN_DEPENDS we need to depend on the port as such. This fixes up
commit a26844393b.
Bump PORTREVSION.
PR: 273137
-rw-r--r-- | emulators/wine/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 432ec7d872c1..4cf0522d4fdf 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -1,6 +1,6 @@ PORTNAME= wine DISTVERSION= 7.0.2 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= https://dl.winehq.org/wine/source/7.0/ @@ -78,7 +78,7 @@ PORTSCOUT= limit:^7\.0 ALSA_CONFIGURE_ON= --with-alsa --without-oss ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib -ALSA_RUN_DEPENDS= libasound_module_pcm_oss.so:audio/alsa-plugins +ALSA_RUN_DEPENDS= alsa-plugins>0:audio/alsa-plugins CUPS_CONFIGURE_WITH= cups CUPS_LIB_DEPENDS= libcups.so:print/cups |