From owner-svn-ports-head@FreeBSD.ORG Thu Jul 24 14:41:00 2014 Return-Path: Delivered-To: svn-ports-head@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 ESMTPS id 985C7D33; Thu, 24 Jul 2014 14:41:00 +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 7A2C8271F; Thu, 24 Jul 2014 14:41:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6OEf0jU074828; Thu, 24 Jul 2014 14:41:00 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6OEexr5074781; Thu, 24 Jul 2014 14:40:59 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201407241440.s6OEexr5074781@svn.freebsd.org> From: Sofian Brabez Date: Thu, 24 Jul 2014 14:40:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362800 - in head/editors/gobby: . 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.18 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, 24 Jul 2014 14:41:00 -0000 Author: sbz Date: Thu Jul 24 14:40:59 2014 New Revision: 362800 URL: http://svnweb.freebsd.org/changeset/ports/362800 QAT: https://qat.redports.org/buildarchive/r362800/ Log: - Fix build with clang Reported by: pkg-fallout Added: head/editors/gobby/files/ head/editors/gobby/files/patch-inc__config.hpp (contents, props changed) head/editors/gobby/files/patch-inc__preferencesdialog.hpp (contents, props changed) Modified: head/editors/gobby/Makefile Modified: head/editors/gobby/Makefile ============================================================================== --- head/editors/gobby/Makefile Thu Jul 24 14:38:01 2014 (r362799) +++ head/editors/gobby/Makefile Thu Jul 24 14:40:59 2014 (r362800) @@ -2,6 +2,7 @@ PORTNAME= gobby PORTVERSION= 0.4.13 +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= http://releases.0x539.de/gobby/ \ LOCAL/${MAINTAINER:C/([^@]*)@.*/\1/} @@ -19,8 +20,8 @@ LIB_DEPENDS= libobby.so:${PORTSDIR}/deve OPTIONS_DEFINE= GTKSPELL NLS GTKSPELL_DESC= Enable GtkSpell support -USE_GNOME= gnomehack gtksourceview2 intltool -USES= gmake pkgconfig +USE_GNOME= gtksourceview2 intltool +USES= gmake pkgconfig pathfix GNU_CONFIGURE= yes INSTALLS_ICONS= yes Added: head/editors/gobby/files/patch-inc__config.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/gobby/files/patch-inc__config.hpp Thu Jul 24 14:40:59 2014 (r362800) @@ -0,0 +1,38 @@ +--- ./inc/config.hpp.orig 2012-01-30 01:27:51.000000000 +0100 ++++ ./inc/config.hpp 2014-07-24 13:11:27.000000000 +0200 +@@ -31,6 +31,19 @@ + #include + #include + ++ ++namespace serialise ++{ ++template<> ++class default_context_to: public context_base_to ++{ ++public: ++ typedef Glib::ustring data_type; ++ ++ virtual std::string to_string(const data_type& from) const; ++}; ++} ++ + namespace Gobby + { + +@@ -460,15 +473,6 @@ + }; + + template<> +-class default_context_to: public context_base_to +-{ +-public: +- typedef Glib::ustring data_type; +- +- virtual std::string to_string(const data_type& from) const; +-}; +- +-template<> + class default_context_from: + public context_base_from + { Added: head/editors/gobby/files/patch-inc__preferencesdialog.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/gobby/files/patch-inc__preferencesdialog.hpp Thu Jul 24 14:40:59 2014 (r362800) @@ -0,0 +1,11 @@ +--- ./inc/preferencesdialog.hpp.orig 2012-01-30 01:27:51.000000000 +0100 ++++ ./inc/preferencesdialog.hpp 2014-07-24 13:12:17.000000000 +0200 +@@ -198,7 +198,7 @@ + protected: + struct LangCompare + { +- bool operator()(GtkSourceLanguage* first, GtkSourceLanguage* second) ++ bool operator()(const GtkSourceLanguage* first, const GtkSourceLanguage* second) const + { + return first < second; + }