From owner-svn-ports-head@freebsd.org Thu Oct 15 18:22:04 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F148A15B2E; Thu, 15 Oct 2015 18:22:04 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 366EB1CE0; Thu, 15 Oct 2015 18:22:04 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9FIM3YY089350; Thu, 15 Oct 2015 18:22:03 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9FIM3fo089348; Thu, 15 Oct 2015 18:22:03 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201510151822.t9FIM3fo089348@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Thu, 15 Oct 2015 18:22:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399356 - head/multimedia/xfce4-parole X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Thu, 15 Oct 2015 18:22:04 -0000 Author: olivierd Date: Thu Oct 15 18:22:02 2015 New Revision: 399356 URL: https://svnweb.freebsd.org/changeset/ports/399356 Log: - Update to 0.8.1 (bugfix release) - Sort USES - Adjust dependencies (remove symbolic theme, because Adwaita already contains symbolic icons) Changelog: http://git.xfce.org/apps/parole/tree/src/parole-conf.c?id=parole-0.8.1 Modified: head/multimedia/xfce4-parole/Makefile head/multimedia/xfce4-parole/distinfo Modified: head/multimedia/xfce4-parole/Makefile ============================================================================== --- head/multimedia/xfce4-parole/Makefile Thu Oct 15 18:01:53 2015 (r399355) +++ head/multimedia/xfce4-parole/Makefile Thu Oct 15 18:22:02 2015 (r399356) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= parole -PORTVERSION= 0.8.0 +PORTVERSION= 0.8.1 CATEGORIES= multimedia xfce MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R}/ DIST_SUBDIR= xfce4 @@ -16,7 +16,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtag.so:${PORTSDIR}/audio/taglib \ libnotify.so:${PORTSDIR}/devel/libnotify \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib -RUN_DEPENDS= gnome-icon-theme-symbolic>=3.6:${PORTSDIR}/x11-themes/gnome-icon-theme-symbolic GNU_CONFIGURE= yes INSTALLS_ICONS= yes @@ -29,8 +28,9 @@ USE_GNOME= gtk30 glib20 intltool intlhac USE_XFCE= panel USE_XORG= x11 sm USE_LDCONFIG= yes -USES= desktop-file-utils pkgconfig gmake libtool gettext-tools \ - xfce:gtk3 tar:bzip2 +USES= desktop-file-utils gettext-tools gmake libtool pkgconfig \ + tar:bzip2 xfce:gtk3 +INSTALL_TARGET= install-strip OPTIONS_DEFINE= CLUTTER NLS OPTIONS_SINGLE= GSTREAMER @@ -40,11 +40,18 @@ OPTIONS_GROUP= GST_PLUG OPTIONS_GROUP_GST_PLUG= CDDA HTTP # Since 0.5.91 release, GStreamer 1.0 is enabled by default OPTIONS_DEFAULT= GST10 HTTP NLS +CLUTTER_LIB_DEPENDS= libclutter-gst-2.0.so:${PORTSDIR}/multimedia/clutter-gst \ + libclutter-gtk-1.0.so:${PORTSDIR}/graphics/clutter-gtk3 +CLUTTER_IMPLIES= GST10 +CLUTTER_CONFIGURE_ENABLE= clutter +NLS_USES= gettext-runtime +NLS_CONFIGURE_ENABLE= nls HTTP_DESC= HTTP streaming (libsoup) GST01_DESC= GStreamer 0.10 GST10_DESC= GStreamer 1.0 GST_PLUG_DESC= Additional GStreamer plugins CLUTTER_DESC= Clutter (OpenGL) backend +OPTIONS_SUB= yes .include @@ -76,23 +83,6 @@ USE_GSTREAMER1+= soup .endif .endif -.if ${PORT_OPTIONS:MNLS} -USES+= gettext-runtime -CONFIGURE_ARGS+= --enable-nls -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.if ${PORT_OPTIONS:MCLUTTER} && ${PORT_OPTIONS:MGST10} -LIB_DEPENDS+= libclutter-gst-2.0.so:${PORTSDIR}/multimedia/clutter-gst \ - libclutter-gtk-1.0.so:${PORTSDIR}/graphics/clutter-gtk3 -CONFIGURE_ARGS+=--enable-clutter -.else -CONFIGURE_ARGS+=--disable-clutter -.endif - post-patch: # Fix .rc files path @${REINPLACE_CMD} -e 's|xfce4/src/misc|${PORTNAME}|g' \ Modified: head/multimedia/xfce4-parole/distinfo ============================================================================== --- head/multimedia/xfce4-parole/distinfo Thu Oct 15 18:01:53 2015 (r399355) +++ head/multimedia/xfce4-parole/distinfo Thu Oct 15 18:22:02 2015 (r399356) @@ -1,2 +1,2 @@ -SHA256 (xfce4/parole-0.8.0.tar.bz2) = 2d966aeb426de81d992829e33b3f66185b19fd031a1891968b3a40d6d50239cc -SIZE (xfce4/parole-0.8.0.tar.bz2) = 813553 +SHA256 (xfce4/parole-0.8.1.tar.bz2) = 4b216f5200490f8d2a9bf1b3fcd9a8b20834c95249bf13b9170c82e1fcbd80f4 +SIZE (xfce4/parole-0.8.1.tar.bz2) = 814827