From owner-svn-ports-head@FreeBSD.ORG Wed Oct 23 20:24:48 2013 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 ESMTP id A0E16256; Wed, 23 Oct 2013 20:24:48 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) 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 8D88B2DF4; Wed, 23 Oct 2013 20:24:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9NKOmdk032817; Wed, 23 Oct 2013 20:24:48 GMT (envelope-from olivierd@svn.freebsd.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9NKOmY3032814; Wed, 23 Oct 2013 20:24:48 GMT (envelope-from olivierd@svn.freebsd.org) Message-Id: <201310232024.r9NKOmY3032814@svn.freebsd.org> From: Olivier Duchateau Date: Wed, 23 Oct 2013 20:24:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331421 - in head/x11-fm/thunar-vfs: . files 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.14 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: Wed, 23 Oct 2013 20:24:48 -0000 Author: olivierd Date: Wed Oct 23 20:24:47 2013 New Revision: 331421 URL: http://svnweb.freebsd.org/changeset/ports/331421 Log: - Support STAGEDIR - Convert to new LIB_DEPENDS format - Replace APIDOCS option by DOCS - Fix NLS, when it's unset - Standardize 'startup-notification' description Added: head/x11-fm/thunar-vfs/files/ head/x11-fm/thunar-vfs/files/patch-configure (contents, props changed) Modified: head/x11-fm/thunar-vfs/Makefile head/x11-fm/thunar-vfs/pkg-descr (contents, props changed) Modified: head/x11-fm/thunar-vfs/Makefile ============================================================================== --- head/x11-fm/thunar-vfs/Makefile Wed Oct 23 20:15:20 2013 (r331420) +++ head/x11-fm/thunar-vfs/Makefile Wed Oct 23 20:24:47 2013 (r331421) @@ -12,28 +12,25 @@ DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org COMMENT= The virtual filesystem for Thunar -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - jpeg:${PORTSDIR}/graphics/jpeg \ - freetype:${PORTSDIR}/print/freetype2 \ - gamin-1:${PORTSDIR}/devel/gamin +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libgamin-1.so:${PORTSDIR}/devel/gamin USE_BZIP2= yes USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes -USE_GNOME= glib20 gtk20 intltool intlhack +USE_GNOME= glib20 gtk20 gdkpixbuf2 intltool intlhack USE_XFCE= configenv libutil libexo USE_XORG= x11 -USES= gmake pathfix perl5 pkgconfig +USES= gmake pathfix perl5 pkgconfig desktop-file-utils CONFIGURE_ARGS= --disable-debug -OPTIONS_DEFINE= NLS HAL DBUS STARTUP GCONF APIDOCS -OPTIONS_DEFAULT= NLS HAL DBUS STARTUP APIDOCS +OPTIONS_DEFINE= NLS HAL DBUS STARTUP GCONF DOCS +OPTIONS_DEFAULT= NLS HAL DBUS STARTUP +STARTUP_DESC= Startup notification -APIDOCS_DESC= Install api documentation -STARTUP_DESC= Enable startup notification support - -NO_STAGE= yes .include .if ${PORT_OPTIONS:MNLS} @@ -46,21 +43,21 @@ PLIST_SUB+= NLS="@comment " .endif .if ${PORT_OPTIONS:MHAL} -LIB_DEPENDS+= hal:${PORTSDIR}/sysutils/hal +LIB_DEPENDS+= libhal.so:${PORTSDIR}/sysutils/hal CONFIGURE_ARGS+=--with-volume-manager=hal .else CONFIGURE_ARGS+=--with-volume-manager=freebsd .endif .if ${PORT_OPTIONS:MDBUS} -LIB_DEPENDS+= dbus-glib-1:${PORTSDIR}/devel/dbus-glib +LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib CONFIGURE_ARGS+=--enable-dbus .else CONFIGURE_ARGS+=--disable-dbus .endif .if ${PORT_OPTIONS:MSTARTUP} -LIB_DEPENDS+= startup-notification-1:${PORTSDIR}/x11/startup-notification +LIB_DEPENDS+= libstartup-notification-1.so:${PORTSDIR}/x11/startup-notification CONFIGURE_ARGS+=--enable-startup-notification .else CONFIGURE_ARGS+=--disable-startup-notification @@ -74,7 +71,7 @@ CONFIGURE_ARGS+=--enable-gnome-thumbnail CONFIGURE_ARGS+=--disable-gnome-thumbnailers .endif -.if ${PORT_OPTIONS:MAPIDOCS} +.if ${PORT_OPTIONS:MDOCS} CONFIGURE_ARGS+=--with-html-dir=${PREFIX}/share/gtk-doc/html PLIST_SUB+= APIDOCS="" .else Added: head/x11-fm/thunar-vfs/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/thunar-vfs/files/patch-configure Wed Oct 23 20:24:47 2013 (r331421) @@ -0,0 +1,11 @@ +--- ./configure.orig 2011-01-16 16:48:44.000000000 +0000 ++++ ./configure 2013-10-23 17:09:46.000000000 +0000 +@@ -13877,7 +13877,7 @@ + + fi + fi +- USE_NLS=yes ++ #USE_NLS=yes + + + gt_cv_have_gettext=no Modified: head/x11-fm/thunar-vfs/pkg-descr ============================================================================== --- head/x11-fm/thunar-vfs/pkg-descr Wed Oct 23 20:15:20 2013 (r331420) +++ head/x11-fm/thunar-vfs/pkg-descr Wed Oct 23 20:24:47 2013 (r331421) @@ -1,4 +1,4 @@ Thunar-VFS is the Virtual filesystem shipped with the thunar 1.0 and earlier releases. -WWW: http://thunar.xfce.org/ +WWW: http://xfce.org/