diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-11 14:35:36 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-11 14:35:36 +0000 |
commit | 5978476c353873821167189c3e7e7d3ce7b9909a (patch) | |
tree | 5c7b83e7642fc29f698d59a6bc145001dbd04783 /audio/kmix | |
parent | - Make 'make -VLEGAL' match the entry in LEGAL and (diff) |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio
With hat: portmgr
Notes
Notes:
svn path=/head/; revision=336166
Diffstat (limited to 'audio/kmix')
-rw-r--r-- | audio/kmix/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/kmix/Makefile b/audio/kmix/Makefile index 1f7509e11408..8891afbe6904 100644 --- a/audio/kmix/Makefile +++ b/audio/kmix/Makefile @@ -27,7 +27,7 @@ OPTIONS_DEFINE= ALSA PULSEAUDIO .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib .else EXTRA_PATCHES+= ${FILESDIR}/extrapatch-no_alsa .endif @@ -35,8 +35,8 @@ EXTRA_PATCHES+= ${FILESDIR}/extrapatch-no_alsa .if ${PORT_OPTIONS:MPULSEAUDIO} CMAKE_ARGS+= -DWITH_Canberra:BOOL=ON \ -DWITH_PulseAudio:BOOL=ON -LIB_DEPENDS+= canberra.0:${PORTSDIR}/audio/libcanberra \ - pulse.0:${PORTSDIR}/audio/pulseaudio +LIB_DEPENDS+= libcanberra.so:${PORTSDIR}/audio/libcanberra \ + libpulse.so:${PORTSDIR}/audio/pulseaudio USE_GNOME= glib20 .else CMAKE_ARGS+= -DWITH_Canberra:BOOL=OFF \ |