diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-11 22:35:36 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-11 22:35:36 +0800 |
commit | 8a0791e07dbf5628b6390993b7f199317991144f (patch) | |
tree | 5c7b83e7642fc29f698d59a6bc145001dbd04783 /audio/xmp | |
parent | c7831a919ccb46504e13b19e5a7b8ac912ec28df (diff) | |
download | freebsd-ports-gnome-8a0791e07dbf5628b6390993b7f199317991144f.tar.gz freebsd-ports-gnome-8a0791e07dbf5628b6390993b7f199317991144f.tar.zst freebsd-ports-gnome-8a0791e07dbf5628b6390993b7f199317991144f.zip |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio
With hat: portmgr
Diffstat (limited to 'audio/xmp')
-rw-r--r-- | audio/xmp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/xmp/Makefile b/audio/xmp/Makefile index 2337c9fab5b8..cdd0d7993518 100644 --- a/audio/xmp/Makefile +++ b/audio/xmp/Makefile @@ -12,7 +12,7 @@ COMMENT= Player for many different Amiga and PC module formats LICENSE= GPLv2 -LIB_DEPENDS= xmp:${PORTSDIR}/audio/libxmp +LIB_DEPENDS= libxmp.so:${PORTSDIR}/audio/libxmp USES= pkgconfig gmake WANT_GNOME= yes @@ -30,7 +30,7 @@ OPTIONS_DEFINE= ALSA PULSEAUDIO .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins CONFIGURE_ARGS+= --enable-alsa .else @@ -38,7 +38,7 @@ CONFIGURE_ARGS+= --disable-alsa .endif .if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= pulse-simple:${PORTSDIR}/audio/pulseaudio +LIB_DEPENDS+= libpulse-simple.so:${PORTSDIR}/audio/pulseaudio CONFIGURE_ARGS+= --enable-pulseaudio .else CONFIGURE_ARGS+= --disable-pulseaudio |