Date: Mon, 4 Aug 2014 15:39:41 +0000 (UTC) From: Veniamin Gvozdikov <vg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364022 - head/audio/deadbeef Message-ID: <53dfa93d.5513.30cb4a47@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vg Date: Mon Aug 4 15:39:40 2014 New Revision: 364022 URL: http://svnweb.freebsd.org/changeset/ports/364022 QAT: https://qat.redports.org/buildarchive/r364022/ Log: - Fix build without converter - Added new depend for artwork - Bump version Modified: head/audio/deadbeef/Makefile Modified: head/audio/deadbeef/Makefile ============================================================================== --- head/audio/deadbeef/Makefile Mon Aug 4 15:28:38 2014 (r364021) +++ head/audio/deadbeef/Makefile Mon Aug 4 15:39:40 2014 (r364022) @@ -3,6 +3,7 @@ PORTNAME= deadbeef PORTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}${PKGNAMESUFFIX} PKGNAMESUFFIX= -rc5 @@ -73,7 +74,7 @@ OPTIONS_SUB= yes PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio PULSEAUDIO_CONFIGURE_OFF= --disable-pulse -GUI_USE= GNOME="gtk20,glib20" +GUI_USE= gnome=gtk20,glib20 GUI_CONFIGURE_OFF= --disable-gtkui --disable-gtk3 VFS_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl @@ -82,6 +83,11 @@ VFS_CONFIGURE_OFF= --disable-vfs-curl LASTFM_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl LASTFM_CONFIGURE_OFF= --disable-lfm +ART_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ + libjpeg.so:${PORTSDIR}/graphics/jpeg +ART_USE= efl=imlib2 +ART_CONFIGURE_OFF= --disable-artwork --disable-artwork-imlib2 + EQ_CONFIGURE_OFF= --disable-supereq SID_CONFIGURE_OFF= --disable-sid @@ -154,6 +160,8 @@ DSP_CONFIGURE_OFF= --disable-src MONO2STEREO_CONFIGURE_OFF= --disable-mono2stereo +CONVERTER_CONFIGURE_OFF= --disable-converter + VFS_ZIP_LIB_DEPENDS= libzip.so:${PORTSDIR}/archivers/libzip VFS_ZIP_CONFIGURE_OFF= --disable-vfs-zip @@ -165,31 +173,13 @@ WMA_CONFIGURE_OFF= --disable-wma .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MART} -.if ${PORT_OPTIONS:MVFS} -CONFIGURE_ARTS+= --disable-artwork-imlib2 -PLIST_SUB+= ART="" -LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl \ - libjpeg.so:${PORTSDIR}/graphics/jpeg -.else +.if ${PORT_OPTIONS:MART} && ! ${PORT_OPTIONS:MVFS} BROKEN= VFS plugin required for album art loader, please rerun 'make config' and either disable ART or enable VFS .endif -.else -CONFIGURE_ARGS+= --disable-artwork -PLIST_SUB+= ART="@comment " -.endif -.if ${PORT_OPTIONS:MCONVERTER} -.if ${PORT_OPTIONS:MGUI} -PLIST_SUB+= CONVERTER="" -USE_GNOME= gtk20 glib20 -.else +.if ${PORT_OPTIONS:MCONVERTER} && ! ${PORT_OPTIONS:MGUI} BROKEN= CONVERTER plugin required for gui, please rerun 'make config' and either disable CONVERTER or enable GUI .endif -.else -CONFIGURE_ARGS+= --disable-converter -PLIST_SUB+= CONVERTER="@comment " -.endif post-patch: # Do not link to libsupc++ which may be PIC-unsafe (breaks 64-bit arches)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53dfa93d.5513.30cb4a47>