aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Piotrowski <0mp@FreeBSD.org>2020-03-02 09:25:36 +0000
committerMateusz Piotrowski <0mp@FreeBSD.org>2020-03-02 09:25:36 +0000
commit7f6a932a8ec5cd4c289771c1d221dbcc65aa56f8 (patch)
tree35db3604bc1647d081570bf7d5f0a42c0dc3d660
parentdcd1fe0196dfe5342e20e181799d459f972464d6 (diff)
downloadports-7f6a932a8ec5cd4c289771c1d221dbcc65aa56f8.tar.gz
ports-7f6a932a8ec5cd4c289771c1d221dbcc65aa56f8.zip
MFH: r527232
Add libarc to LIB_DEPENDS for audio/timidity++ Up until now, libarc was only being included in LIB_DEPENDS when the Makefile of audio/timidity++ was being used by one of its slave ports. audio/timidity++, however, may be also used as a standalone port in which case it needs libarc to be available. Reported by: hselasky Approved by: portmgr blanket (runtime fix)
Notes
Notes: svn path=/branches/2020Q1/; revision=527620
-rw-r--r--audio/timidity++/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/timidity++/Makefile b/audio/timidity++/Makefile
index e3ebeb95dc07..784566b91a33 100644
--- a/audio/timidity++/Makefile
+++ b/audio/timidity++/Makefile
@@ -3,7 +3,7 @@
PORTNAME= timidity++
PORTVERSION= 2.14.0
-PORTREVISION?= 4
+PORTREVISION?= 5
CATEGORIES+= audio
MASTER_SITES= SF/timidity/TiMidity%2B%2B/TiMidity%2B%2B-${PORTVERSION}
DISTNAME= TiMidity++-${PORTVERSION}
@@ -13,9 +13,9 @@ COMMENT?= Software MIDI player
LICENSE= GPLv2+
+LIB_DEPENDS= libarc.so:archivers/libarc
.if !defined(PKGNAMESUFFIX)
-LIB_DEPENDS= libarc.so:archivers/libarc \
- libvorbis.so:audio/libvorbis \
+LIB_DEPENDS+= libvorbis.so:audio/libvorbis \
libogg.so:audio/libogg
RUN_DEPENDS= eawpats>0:audio/eawpats
.endif