From owner-svn-ports-all@FreeBSD.ORG Mon Dec 2 03:39:34 2013 Return-Path: <owner-svn-ports-all@FreeBSD.ORG> Delivered-To: svn-ports-all@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 B9155C8D; Mon, 2 Dec 2013 03:39:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A5E556D62; Mon, 2 Dec 2013 03:39:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB23dYKk089729; Mon, 2 Dec 2013 03:39:34 GMT (envelope-from sbruno@svn.freebsd.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rB23dYuT089726; Mon, 2 Dec 2013 03:39:34 GMT (envelope-from sbruno@svn.freebsd.org) Message-Id: <201312020339.rB23dYuT089726@svn.freebsd.org> From: Sean Bruno <sbruno@FreeBSD.org> Date: Mon, 2 Dec 2013 03:39:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335448 - head/audio/clementine-player X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/options/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/> List-Post: <mailto:svn-ports-all@freebsd.org> List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Mon, 02 Dec 2013 03:39:34 -0000 Author: sbruno (src committer) Date: Mon Dec 2 03:39:33 2013 New Revision: 335448 URL: http://svnweb.freebsd.org/changeset/ports/335448 Log: after review from makc@ Bump PORTREVISION becuase ... - Remove WITH_DEBUG - Enable DBUS for all configurations - Remove DBUS as a configuration option - Remove GOOGLE_DRIVE as a default option, google sparsehash will not build currently. - Remove share/applications from plist PR: ports/182107 Modified: head/audio/clementine-player/Makefile head/audio/clementine-player/pkg-plist Modified: head/audio/clementine-player/Makefile ============================================================================== --- head/audio/clementine-player/Makefile Mon Dec 2 01:32:15 2013 (r335447) +++ head/audio/clementine-player/Makefile Mon Dec 2 03:39:33 2013 (r335448) @@ -3,6 +3,7 @@ o Created by: Veniamin Gvozdikov <vg@Fre PORTNAME= clementine PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= GOOGLE_CODE PKGNAMESUFFIX= -player @@ -30,15 +31,15 @@ NO_STAGE= yes USE_GL= glew USE_QT4= dbus gui xml qmake_build uic_build moc_build rcc_build \ linguist_build network sql opengl qtestlib corelib webkit -WITH_DEBUG= yes INSTALLS_ICONS= yes USE_GSTREAMER= gio ogg mp3 flac soup vorbis MAKE_JOBS_UNSAFE= yes CONFLICTS_BUILD= qt-3.* CMAKE_ARGS+= -DCMAKE_LIBRARY_PATH:PATH="${LOCALBASE}/lib:${PREFIX}/lib" \ + -DENABLE_DEBUS=ON -DENABLE_BOX=OFF \ -DENABLE_IMOBILEDEVICE=OFF -DENABLE_SPARKLE=OFF \ - -DENABLE_SOUNDMENU=OFF -DENABLE_DBUS=OFF -DENABLE_UBUNTU_ONE=OFF \ + -DENABLE_SOUNDMENU=OFF -DENABLE_UBUNTU_ONE=OFF \ -DENABLE_DROPBOX=OFF -DENABLE_SKYDRIVE=OFF OPTIONS_DEFINE= AUDIOCD BREAKPAD DEVICEKIT GIO GOOGLE_DRIVE GPOD \ @@ -47,7 +48,6 @@ OPTIONS_DEFINE= AUDIOCD BREAKPAD DEVICE AUDIOCD_DESC= Devices: Audio CD support BREAKPAD_DESC= Crash reporting -DBUS_DESC= Enable D-Bus support DEVICEKIT_DESC= Devices: DeviceKit backend GIO_DESC= Devices: GIO device backend GOOGLE_DRIVE_DESC= Google Drive support @@ -60,17 +60,11 @@ WIIMOTEDEV_DESC= Wiimote support MOODBAR_DESC= Moodbar Support USE_BUILTIN_TAGLIB= Use Clementine builtin taglib support -OPTIONS_DEFAULT= AUDIOCD DEVICEKIT GIO GOOGLE_DRIVE LASTFM MTP \ - VISUALISATION WIIMOTEDEV MOODBAR +OPTIONS_DEFAULT= AUDIOCD DEVICEKIT GIO LASTFM MTP VISUALISATION \ + WIIMOTEDEV MOODBAR .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MDBUS} -CMAKE_ARGS+= -DENABLE_DBUS=ON -.else -CMAKE_ARGS+= -DENABLE_DBUS=OFF -.endif - .if ${PORT_OPTIONS:MMOODBAR} CMAKE_ARGS+= -DENABLE_MOODBAR=ON .else @@ -151,8 +145,7 @@ CMAKE_ARGS+= -DENABLE_VISUALISATIONS=OFF .endif .if ${PORT_OPTIONS:MWIIMOTEDEV} -CMAKE_ARGS+= -DENABLE_WIIMOTEDEV=ON \ - -DENABLE_DBUS=ON +CMAKE_ARGS+= -DENABLE_WIIMOTEDEV=ON .else CMAKE_ARGS+= -DENABLE_WIIMOTEDEV=OFF .endif Modified: head/audio/clementine-player/pkg-plist ============================================================================== --- head/audio/clementine-player/pkg-plist Mon Dec 2 01:32:15 2013 (r335447) +++ head/audio/clementine-player/pkg-plist Mon Dec 2 03:39:33 2013 (r335448) @@ -578,7 +578,6 @@ share/clementine/projectm-presets/Aderra share/clementine/projectm-presets/Unchained & Rovastar - Wormhole Pillars (Hall of Shadows mi.milk share/clementine/projectm-presets/Rovastar - Inner Thoughts (Clouded Judgement Mix).milk share/clementine/projectm-presets/Che - Burning Hus.milk -@dirrmtry share/applications @dirrmtry share/icons/hicolor/64x64/apps @dirrmtry share/icons/hicolor/64x64 @dirrmtry share/icons/hicolor/scalable/apps