audio/musicpd is used by multimedia/spotify-websocket-api as its audio backend, but it relies on curl being enabled in musicpd in order to work. Without curl the client (respotify) just hangs as soon as the user tries to play a song. While here convert USE_XZ=yes to USES=tar:xz Bump PORTREVISION How-To-Repeat: 1. install multimedia/spotify-websocket-api 2. start it: respotify user pass (possibly from LOCALBASE) 3. make sure that respotify-helper is running (it should...) (cd /usr/local/bin ; respotify-helper user pass) 4a. search for a song using the "search" command 4b. play it back: "play 1" Now the client hangs ...
Responsible Changed From-To: freebsd-ports-bugs->crees Over to maintainer (via the GNATS Auto Assign Tool)
Author: crees Date: Mon Mar 24 18:13:10 2014 New Revision: 349047 URL: http://svnweb.freebsd.org/changeset/ports/349047 QAT: https://qat.redports.org/buildarchive/r349047/ Log: Enable curl by default. PR: ports/187833 Submitted by: rene Modified: head/audio/musicpd/Makefile Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Mon Mar 24 18:11:44 2014 (r349046) +++ head/audio/musicpd/Makefile Mon Mar 24 18:13:10 2014 (r349047) @@ -2,7 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.18.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} @@ -12,8 +12,7 @@ COMMENT= Remote-controllable music daemo LICENSE= GPLv2 -USES= gmake pkgconfig compiler:c++11-lib -USE_XZ= yes +USES= gmake pkgconfig compiler:c++11-lib tar:xz GNU_CONFIGURE= yes USE_GNOME= glib20 @@ -54,7 +53,7 @@ VORBISENC_DESC= Ogg Vorbis encoder WAVPACK_DESC= WavPack support WILDMIDI_DESC= WildMIDI support (MIDI files) -OPTIONS_DEFAULT=ID3TAG IPV6 MAD OSS FLAC VORBIS WAV FFMPEG SNDFILE +OPTIONS_DEFAULT=ID3TAG IPV6 MAD OSS FLAC VORBIS WAV FFMPEG SNDFILE CURL AAC_CONFIGURE_ENABLE=aac AAC_LIB_DEPENDS=libfaad.so:${PORTSDIR}/audio/faad _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!