diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-09-22 08:45:30 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-09-22 08:45:30 +0800 |
commit | d9b7a5d08f21fddb6cfde0f9007bf386efa262c3 (patch) | |
tree | 0c2b10e51baf43285a81e5ec64568d9cf79d1dd9 /audio/pulseaudio/Makefile | |
parent | 7c7d7065529de83ad11e25e81432355d363a367e (diff) | |
download | marcuscom-ports-d9b7a5d08f21fddb6cfde0f9007bf386efa262c3.tar marcuscom-ports-d9b7a5d08f21fddb6cfde0f9007bf386efa262c3.tar.gz marcuscom-ports-d9b7a5d08f21fddb6cfde0f9007bf386efa262c3.tar.bz2 marcuscom-ports-d9b7a5d08f21fddb6cfde0f9007bf386efa262c3.tar.lz marcuscom-ports-d9b7a5d08f21fddb6cfde0f9007bf386efa262c3.tar.xz marcuscom-ports-d9b7a5d08f21fddb6cfde0f9007bf386efa262c3.tar.zst marcuscom-ports-d9b7a5d08f21fddb6cfde0f9007bf386efa262c3.zip |
Add NO_STAGE to all ports, until we convert each one.
Use new LIB_DEPEND syntax for most ports.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18692 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/pulseaudio/Makefile')
-rw-r--r-- | audio/pulseaudio/Makefile | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/audio/pulseaudio/Makefile b/audio/pulseaudio/Makefile index 0855dc50e..b326dd042 100644 --- a/audio/pulseaudio/Makefile +++ b/audio/pulseaudio/Makefile @@ -14,17 +14,18 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= Sound server for UNIX # keep the json version otherwise it will match json-glib -LIB_DEPENDS= samplerate:${PORTSDIR}/audio/libsamplerate \ - sndfile:${PORTSDIR}/audio/libsndfile \ - speexdsp:${PORTSDIR}/audio/speex \ - fftw3:${PORTSDIR}/math/fftw3 \ - fftw3f:${PORTSDIR}/math/fftw3-float \ - orc-0.4:${PORTSDIR}/devel/orc \ - json.0:${PORTSDIR}/devel/json-c \ - dbus-1:${PORTSDIR}/devel/dbus \ - execinfo:${PORTSDIR}/devel/libexecinfo \ - ck-connector:${PORTSDIR}/sysutils/consolekit - +LIB_DEPENDS= libsamplerate.so:${PORTSDIR}/audio/libsamplerate \ + libsndfile.so:${PORTSDIR}/audio/libsndfile \ + libspeexdsp.so:${PORTSDIR}/audio/speex \ + libfftw3.so:${PORTSDIR}/math/fftw3 \ + libfftw3f.so:${PORTSDIR}/math/fftw3-float \ + liborc-0.4.so:${PORTSDIR}/devel/orc \ + libjson.so.0:${PORTSDIR}/devel/json-c \ + libdbus-1.s0:${PORTSDIR}/devel/dbus \ + libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ + libck-connector.so:${PORTSDIR}/sysutils/consolekit + +NO_STAGE= yes USE_XZ= yes USE_GNOME= glib20 intltool ltverhack gnomehier USE_XORG= x11 sm xtst ice @@ -70,7 +71,7 @@ MAN5= default.pa.5 pulse-cli-syntax.5 pulse-client.conf.5 \ .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MJACK} -LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack +LIB_DEPENDS+= libjack.so:${PORTSDIR}/audio/jack PLIST_SUB+= JACK="" .else PLIST_SUB+= JACK="@comment " @@ -78,7 +79,7 @@ CONFIGURE_ARGS+=--disable-jack .endif .if ${PORT_OPTIONS:MAVAHI} -LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app +LIB_DEPENDS+= libavahi-client.so:${PORTSDIR}/net/avahi-app PLIST_SUB+= AVAHI="" .else CONFIGURE_ARGS+=--disable-avahi @@ -94,7 +95,7 @@ PLIST_SUB+= GCONF="@comment " .endif .if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib PLIST_SUB+= ALSA="" .else CONFIGURE_ARGS+=--disable-alsa @@ -102,7 +103,7 @@ PLIST_SUB+= ALSA="@comment " .endif .if ${PORT_OPTIONS:MSIMD} -LIB_DEPENDS+= orc-0.4:${PORTSDIR}/devel/orc +LIB_DEPENDS+= liborc-0.4.so:${PORTSDIR}/devel/orc CONFIGURE_ARGS+=--enable-orc .else CONFIGURE_ARGS+=--disable-orc |