From owner-svn-ports-head@FreeBSD.ORG Mon Aug 4 15:39:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C5A0CB8 for ; Mon, 4 Aug 2014 15:39:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4CD942081 for ; Mon, 4 Aug 2014 15:39:41 +0000 (UTC) Received: from vg (uid 1320) (envelope-from vg@FreeBSD.org) id 5513 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Mon, 04 Aug 2014 15:39:41 +0000 From: Veniamin Gvozdikov Date: Mon, 4 Aug 2014 15:39:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364022 - head/audio/deadbeef X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53dfa93d.5513.30cb4a47@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2014 15:39:41 -0000 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 -.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)