From owner-svn-ports-head@FreeBSD.ORG Sun Sep 21 08:03:47 2014 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 ESMTPS id ECA2FDA2; Sun, 21 Sep 2014 08:03:47 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC6FEA11; Sun, 21 Sep 2014 08:03:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8L83ll0033738; Sun, 21 Sep 2014 08:03:47 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8L83lJG033735; Sun, 21 Sep 2014 08:03:47 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201409210803.s8L83lJG033735@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 21 Sep 2014 08:03:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368722 - head/net-p2p/gtk-gnutella 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.18-1 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: Sun, 21 Sep 2014 08:03:48 -0000 Author: pawel Date: Sun Sep 21 08:03:46 2014 New Revision: 368722 URL: http://svnweb.freebsd.org/changeset/ports/368722 QAT: https://qat.redports.org/buildarchive/r368722/ Log: - Update to version 1.1.1 [1] - Fix LIB_DEPENDS for DBUS option PR: ports/193328 [1] Submitted by: tkato432@yahoo.com Modified: head/net-p2p/gtk-gnutella/Makefile head/net-p2p/gtk-gnutella/distinfo head/net-p2p/gtk-gnutella/pkg-descr Modified: head/net-p2p/gtk-gnutella/Makefile ============================================================================== --- head/net-p2p/gtk-gnutella/Makefile Sun Sep 21 07:52:45 2014 (r368721) +++ head/net-p2p/gtk-gnutella/Makefile Sun Sep 21 08:03:46 2014 (r368722) @@ -4,36 +4,36 @@ # # A quick note on configurable make symbols: # -# INTERACTIVE_CONFIGURE: Launches Configure in its default mode, -# which is *very* interactive. Disabled here by default to conform to -# FreeBSD guidelines, this mode is useful if you have problems with the +# INTERACTIVE_CONFIGURE: Launches Configure in its default mode, which is +# *very* interactive. Disabled here by default to conform to FreeBSD +# guidelines, this mode is useful if you have problems with the # default Configure. # -# WITH_GUI: Disable this to build a headless version of Gtk-Gnutella. -# Therefore, monitoring of operations for Gtk-Gnutella will have to be -# done without relying on any GUI, and the configuration is done via -# files only. +# GUI: Disable this to build a headless version of Gtk-Gnutella. Therefore, +# monitoring of operations for Gtk-Gnutella will have to be +# done without relying on any GUI, and the configuration is done via +# files only. # -# WITH_TLS: Enable support for scrambling GNet connections. Currently supported -# only by Gtk-Gnutella. +# TLS: Enable support for scrambling GNet connections. Currently supported +# only by Gtk-Gnutella. # -# WITH_NLS: Enable National Language Support for translation of User Interface. +# NLS: Enable National Language Support for translation of User Interface. # -# WITH_IPV6: Enable to support IPv6 connections. The real configuration takes -# place at run-time so keeping it enabled will not force IPv6 usage. +# IPV6: Enable to support IPv6 connections. The real configuration takes +# place at run-time so keeping it enabled will not force IPv6 usage. # -# WITH_DBUS: Enable D-Bus IPC support. No further information available. +# DBUS: Enable D-Bus IPC support. No further information available. # -# WITH_DEBUG: Compile with debugging symbols. Useful if you intend to make -# a bug report. +# DEBUG: Compile with debugging symbols. Useful if you intend to make a +# bug report. # -# WITH_PORTABILITY: Configure code to use the PATH variable at run-time -# at a cost in performance. Useful if you intend to move the executable +# PORTABILITY: Configure code to use the PATH variable at run-time at a +# cost in performance. Useful if you intend to move the executable # to multiple machines. # PORTNAME= gtk-gnutella -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF @@ -68,7 +68,7 @@ OPTIONS_DEFINE= DBUS DEBUG GUI IPV6 NLS OPTIONS_DEFAULT= GUI TLS OPTIONS_SUB= yes -DBUS_LIB_DEPENDS= libdbus.so:${PORTSDIR}/devel/dbus +DBUS_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus DBUS_CONFIGURE_OFF= -Ud_dbus DEBUG_CONFIGURE_ON= -Ud_official GUI_USE= gnome=gtk20 @@ -91,6 +91,9 @@ CONFIGURE_ARGS+= -ders INSTALLS_ICONS= yes .endif +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + post-patch: @${FIND} ${WRKSRC} -name "Makefile.SH" | ${XARGS} ${REINPLACE_CMD} -e \ 's|@exit 0|@echo done|' Modified: head/net-p2p/gtk-gnutella/distinfo ============================================================================== --- head/net-p2p/gtk-gnutella/distinfo Sun Sep 21 07:52:45 2014 (r368721) +++ head/net-p2p/gtk-gnutella/distinfo Sun Sep 21 08:03:46 2014 (r368722) @@ -1,2 +1,2 @@ -SHA256 (gtk-gnutella-1.1.0.tar.bz2) = cb033d14b647c3a45c6731b94aaa8ed32729ff6aa31f82e372397cd75869f9e9 -SIZE (gtk-gnutella-1.1.0.tar.bz2) = 19399321 +SHA256 (gtk-gnutella-1.1.1.tar.bz2) = 6e077204ddc23d0b8a044c3d7f12f40e8876b523f12a90c00b6725170611b501 +SIZE (gtk-gnutella-1.1.1.tar.bz2) = 35342037 Modified: head/net-p2p/gtk-gnutella/pkg-descr ============================================================================== --- head/net-p2p/gtk-gnutella/pkg-descr Sun Sep 21 07:52:45 2014 (r368721) +++ head/net-p2p/gtk-gnutella/pkg-descr Sun Sep 21 08:03:46 2014 (r368722) @@ -1,12 +1,13 @@ -GTK based Gnutella client which supports the standard Gnutella operations. +GTK based Gnutella client which supports the standard Gnutella +operations. -Search, download, file sharing, bandwidth limiting, host caching, as well -as some basic statistics. Now with enhanced features, such as PARQ queueing, -PFSP, DHT, push-proxies, UPnP, NAT-PMP and others, making it a stable and -fully functional graphical gnutella client for *nix systems. +Search, download, file sharing, bandwidth limiting, host caching, as +well as some basic statistics. Now with enhanced features, such as PARQ +queueing, PFSP, DHT, push-proxies, UPnP, NAT-PMP and others, making it a +stable and fully functional graphical gnutella client for *nix systems. -An excellent way to find that hidden file on the internet that you know exists -but standard search engines do not seem to carry. +An excellent way to find that hidden file on the internet that you know +exists but standard search engines do not seem to carry. WWW: http://gtk-gnutella.sourceforge.net/ IRC: #gtk-gnutella on freenode.net