diff options
author | rm <rm@FreeBSD.org> | 2012-01-17 03:11:28 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2012-01-17 03:11:28 +0800 |
commit | 77e3722fd6fc76777cfe1ed4b5517632501a2317 (patch) | |
tree | 8d9a930512bfabf9e2143ced85aa0f5318ec1cfc /audio | |
parent | 5a89ea7d0ef1583e9c0615c1327cda1a76f42324 (diff) | |
download | freebsd-ports-gnome-77e3722fd6fc76777cfe1ed4b5517632501a2317.tar.gz freebsd-ports-gnome-77e3722fd6fc76777cfe1ed4b5517632501a2317.tar.zst freebsd-ports-gnome-77e3722fd6fc76777cfe1ed4b5517632501a2317.zip |
- do not let to link with already installed ports, that were disabled with
options to avoid hidden dependencies
Submitted by: makc
Approved by: Veniamin Gvozdikov <g.veniamin at googlemail dot com> (maintainer)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/clementine-player/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/audio/clementine-player/Makefile b/audio/clementine-player/Makefile index 531482675ae5..03dafbcf4f72 100644 --- a/audio/clementine-player/Makefile +++ b/audio/clementine-player/Makefile @@ -54,14 +54,20 @@ PLIST_SUB+= VSL="@comment " .if defined(WITH_LASTFM) LIB_DEPENDS+= lastfm.0:${PORTSDIR}/audio/liblastfm +.else +CMAKE_ARGS+= -DENABLE_LIBLASTFM=Off .endif .if defined(WITH_GPOD) LIB_DEPENDS+= gpod.7:${PORTSDIR}/audio/libgpod +.else +CMAKE_ARGS+= -DENABLE_LIBGPOD=Off .endif .if defined(WITH_MTP) LIB_DEPENDS+= mtp.11:${PORTSDIR}/audio/libmtp +.else +CMAKE_ARGS+= -DENABLE_LIBMTP=Off .endif .include <bsd.port.post.mk> |