From owner-svn-ports-all@FreeBSD.ORG Sat Mar 9 11:17:22 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6B0279D; Sat, 9 Mar 2013 11:17:22 +0000 (UTC) (envelope-from duchateau.olivier@gmail.com) Received: from mail-la0-x22b.google.com (mail-la0-x22b.google.com [IPv6:2a00:1450:4010:c03::22b]) by mx1.freebsd.org (Postfix) with ESMTP id 94003A79; Sat, 9 Mar 2013 11:17:21 +0000 (UTC) Received: by mail-la0-f43.google.com with SMTP id ek20so2522412lab.30 for ; Sat, 09 Mar 2013 03:17:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=BtrvAs0AjKyyekdL96F/oID5VmZcwo1BxKX72dJZrz0=; b=Wha5uFAWRB2vYZMAiEj2cDgyG6tP7iEvDikn4iMSSRwUf231e1lr+A9ojP6IwyRQI8 Tdtx7q/thlSD1CUZyqWXoAyA0tazUh8dc3xf0yxUj1IyL+8whKZJu5o+oqHt8120QKH8 DhEFtGM2E54lJnOv+Kh+MzHTgeZC1kwtNMObNn29PpMd09ZTJsqfc+D2XsbX6oBE+pwE UzPfkv1uW/HsklvpSI0c7xl2xGPx628cn+FBard6Kzx1+lJhcqN0/3EjIV9ZRCX5v/cI OkZpAFaLNKHlhbSFqbMkicweZK0jv+47WlkWpuSqhP2pHJiI2RQ4FlIyFJNONFUegDuP L0kQ== MIME-Version: 1.0 X-Received: by 10.112.13.136 with SMTP id h8mr2249541lbc.4.1362827840523; Sat, 09 Mar 2013 03:17:20 -0800 (PST) Received: by 10.152.120.33 with HTTP; Sat, 9 Mar 2013 03:17:20 -0800 (PST) In-Reply-To: <201303091112.r29BCsCr025929@svn.freebsd.org> References: <201303091112.r29BCsCr025929@svn.freebsd.org> Date: Sat, 9 Mar 2013 12:17:20 +0100 Message-ID: Subject: Re: svn commit: r313704 - in head: x11-fm/thunar x11-fm/thunar/files x11/libexo From: Olivier Duchateau To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 11:17:22 -0000 Before someone ask, why multimedia/xfce4-parole is not concerned, it's normal, an update (0.5.0) comes soon. 2013/3/9 Olivier Duchateau : > Author: olivierd > Date: Sat Mar 9 11:12:54 2013 > New Revision: 313704 > URL: http://svnweb.freebsd.org/changeset/ports/313704 > > Log: > - Drop support for GLib 2.28 > > Approved by: rene, miwi (mentors, implicit) > > Deleted: > head/x11-fm/thunar/files/patch-thunar__thunar-gio-extensions.c > head/x11-fm/thunar/files/patch-thunar__thunar-size-label.c > Modified: > head/x11-fm/thunar/Makefile > head/x11/libexo/Makefile > > Modified: head/x11-fm/thunar/Makefile > ============================================================================== > --- head/x11-fm/thunar/Makefile Sat Mar 9 11:11:53 2013 (r313703) > +++ head/x11-fm/thunar/Makefile Sat Mar 9 11:12:54 2013 (r313704) > @@ -4,7 +4,7 @@ > > PORTNAME= Thunar > PORTVERSION= 1.6.2 > -PORTREVISION= 2 > +PORTREVISION= 3 > CATEGORIES= x11-fm xfce > MASTER_SITES= ${MASTER_SITE_XFCE} > MASTER_SITE_SUBDIR= src/xfce/${PORTNAME:L}/${PORTVERSION:R} > @@ -34,11 +34,11 @@ OPTIONS_DEFAULT= DBUS GVFS NOTIFY PLUG_A > # Override NOTIFY_DESC > NOTIFY_DESC= Display notifications > STARTUP_DESC= Startup notification > -PLUG_APR_DESC= Thunar Advanced Properties plugin > -PLUG_SBR_DESC= Thunar Simple Builtin Renamers plugin > -PLUG_TPA_DESC= Thunar Trash Panel Applet plugin > -PLUG_UCA_DESC= Thunar User Customizable Actions plugin > -PLUG_WALL_DESC= Thunar Wallpaper plugin > +PLUG_APR_DESC= Advanced Properties plugin > +PLUG_SBR_DESC= Simple Builtin Renamers plugin > +PLUG_TPA_DESC= Trash Panel Applet plugin > +PLUG_UCA_DESC= User Customizable Actions plugin > +PLUG_WALL_DESC= Wallpaper plugin > > CONFIGURE_ARGS+= --disable-gtk-doc-html \ > --enable-gio-unix \ > @@ -135,13 +135,6 @@ CONFIGURE_ARGS+=--disable-startup-notifi > USE_GNOME+=gvfs > .endif > > -post-patch: > -# Downgrade GLib to 2.28 > - @${REINPLACE_CMD} -e 's|2.30.|2.28.|g' ${WRKSRC}/configure > - @${FIND} ${WRKSRC} -name '*.c' -type f \ > - | ${XARGS} ${REINPLACE_CMD} -e \ > - 's|g_format_size (|g_format_size_for_display (|g' > - > post-install: > @-update-desktop-database > > > Modified: head/x11/libexo/Makefile > ============================================================================== > --- head/x11/libexo/Makefile Sat Mar 9 11:11:53 2013 (r313703) > +++ head/x11/libexo/Makefile Sat Mar 9 11:12:54 2013 (r313704) > @@ -4,6 +4,7 @@ > > PORTNAME= libexo > PORTVERSION= 0.10.2 > +PORTREVISION= 1 > CATEGORIES= x11 xfce > MASTER_SITES= ${MASTER_SITE_XFCE} > MASTER_SITE_SUBDIR= src/xfce/exo/${PORTVERSION:R} > @@ -56,8 +57,6 @@ PLIST_SUB+= NLS="@comment " > .endif > > post-patch: > -# Downgrade GLib to 2.28 > - @${REINPLACE_CMD} -e 's|2.30.|2.28.|g' ${WRKSRC}/configure > .if empty(PORT_OPTIONS:MNLS) > @${REINPLACE_CMD} -e 's| po||' ${WRKSRC}/Makefile.in > .endif -- olivier