From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 4 04:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B99E5F02 for ; Wed, 4 Sep 2013 04:10:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 9AD2427EF for ; Wed, 4 Sep 2013 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r844A0MH047055 for ; Wed, 4 Sep 2013 04:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r844A0ti047051; Wed, 4 Sep 2013 04:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 4 Sep 2013 04:10:00 GMT Resent-Message-Id: <201309040410.r844A0ti047051@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Danilo Egêa Gondolfo 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 30CFEE43 for ; Wed, 4 Sep 2013 04:06:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 06AC127BD for ; Wed, 4 Sep 2013 04:06:10 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r84469ci043990 for ; Wed, 4 Sep 2013 04:06:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r84469t6043989; Wed, 4 Sep 2013 04:06:09 GMT (envelope-from nobody) Message-Id: <201309040406.r84469t6043989@oldred.freebsd.org> Date: Wed, 4 Sep 2013 04:06:09 GMT From: Danilo Egêa Gondolfo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/181790: x11/yad update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Sep 2013 04:10:00 -0000 >Number: 181790 >Category: ports >Synopsis: x11/yad update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 04 04:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Danilo Egêa Gondolfo >Release: FreeBSD 9.2-RC3 >Organization: >Environment: FreeBSD mac 9.2-RC3 FreeBSD 9.2-RC3 #3 r254983: Tue Aug 27 23:55:24 BRT 2013 root@mac:/usr/obj/usr/src/sys/MAC amd64 >Description: Changes - Updated from 0.22.1 to 0.23.0 - Added header - Options changed to options helpers - Added YAD Icon Browser option Changelog: https://code.google.com/p/yad/source/browse/trunk/ChangeLog?spec=svn687&r=687 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 326242) +++ Makefile (working copy) @@ -1,7 +1,8 @@ +# Created by: Danilo Egea Gondolfo # $FreeBSD$ PORTNAME= yad -PORTVERSION= 0.22.1 +PORTVERSION= 0.23.0 CATEGORIES= x11 gnome MASTER_SITES= GOOGLE_CODE @@ -17,7 +18,9 @@ MAN1= yad.1 -OPTIONS_DEFINE= NLS +OPTIONS_DEFINE= NLS ICONBROWSER +ICONBROWSER_DESC= Build YAD icon browser +OPTIONS_SUB= yes OPTIONS_SINGLE= GTK OPTIONS_SINGLE_GTK= GTK2 GTK3 @@ -24,26 +27,20 @@ OPTIONS_DEFAULT= GTK2 +NLS_CONFIGURE_OFF= --disable-nls +NLS_USES= gettext +GTK2_CONFIGURE_ON= --with-gtk=gtk2 +GTK3_CONFIGURE_ON= --with-gtk=gtk3 +ICONBROWSER_CONFIGURE_ENABLE= icon-browser + .include -.if ${PORT_OPTIONS:MNLS} -PLIST_SUB+= NLS="" -USES+= gettext +.if ${PORT_OPTIONS:MGTK2} +USE_GNOME= gtk20 .else -PLIST_SUB+= NLS="@comment " -CONFIGURE_ARGS+= --disable-nls -.endif - -.if ${PORT_OPTIONS:MGTK3} USE_GNOME= gtk30 -CONFIGURE_ARGS+= --with-gtk=gtk3 .endif -.if ${PORT_OPTIONS:MGTK2} -USE_GNOME= gtk20 -CONFIGURE_ARGS+= --with-gtk=gtk2 -.endif - post-configure: .if empty(PORT_OPTIONS:MNLS) @${REINPLACE_CMD} -e '/^SUBDIRS =/ s/ po//' ${WRKSRC}/Makefile Index: distinfo =================================================================== --- distinfo (revision 326242) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (yad-0.22.1.tar.xz) = 4dd9239ac0905c5d6e856725b16420322d27ef1a05aa7ee1ac45ef1a3a37b8e3 -SIZE (yad-0.22.1.tar.xz) = 223788 +SHA256 (yad-0.23.0.tar.xz) = ba84fe2953f398df5b091d7e863412c792a56f995319b1313e70c5579de1cdda +SIZE (yad-0.23.0.tar.xz) = 224404 Index: pkg-plist =================================================================== --- pkg-plist (revision 326242) +++ pkg-plist (working copy) @@ -13,3 +13,5 @@ %%NLS%%share/locale/sk/LC_MESSAGES/yad.mo %%NLS%%share/locale/uk/LC_MESSAGES/yad.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/yad.mo +%%ICONBROWSER%%bin/yad-icon-browser +%%ICONBROWSER%%share/applications/yad-icon-browser.desktop >Release-Note: >Audit-Trail: >Unformatted: