From owner-svn-ports-head@freebsd.org Fri Oct 9 13:07:17 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E7F2E3FA49A; Fri, 9 Oct 2020 13:07:17 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C77dd22vkz4MZf; Fri, 9 Oct 2020 13:07:17 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E14D71A214; Fri, 9 Oct 2020 13:07:16 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 099D7Gvk061493; Fri, 9 Oct 2020 13:07:16 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 099D7G2S061492; Fri, 9 Oct 2020 13:07:16 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202010091307.099D7G2S061492@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Fri, 9 Oct 2020 13:07:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551767 - head/devel/libindicator X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/devel/libindicator X-SVN-Commit-Revision: 551767 X-SVN-Commit-Repository: ports 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.33 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: Fri, 09 Oct 2020 13:07:18 -0000 Author: pkubaj Date: Fri Oct 9 13:07:16 2020 New Revision: 551767 URL: https://svnweb.freebsd.org/changeset/ports/551767 Log: devel/libindicator: fix build on powerpc64 elfv1 and remove stale CFLAGS Build on both elfv1 and elfv2 passes fine. Other architectures are untested, but they currently don't have Rust available, making build impossible. Require newer GCC to build on elfv1: cc1: warnings being treated as errors In file included from /usr/local/include/glib-2.0/glib/gthread.h:34, from /usr/local/include/glib-2.0/glib/gasyncqueue.h:32, from /usr/local/include/glib-2.0/glib.h:32, from /usr/local/include/gtk-3.0/gdk/gdkconfig.h:13, from /usr/local/include/gtk-3.0/gdk/gdk.h:30, from /usr/local/include/gtk-3.0/gtk/gtk.h:30, from indicator-loader.c:25: /usr/local/include/glib-2.0/glib/gutils.h:336: warning: 'GVoidFunc' is deprecated Modified: head/devel/libindicator/Makefile Modified: head/devel/libindicator/Makefile ============================================================================== --- head/devel/libindicator/Makefile Fri Oct 9 12:00:44 2020 (r551766) +++ head/devel/libindicator/Makefile Fri Oct 9 13:07:16 2020 (r551767) @@ -8,18 +8,10 @@ MASTER_SITES= https://launchpad.net/${PORTNAME}/${PORT MAINTAINER= swills@FreeBSD.org COMMENT= Symbols and convience functions for desktop indicators -USES= gmake gnome libtool pkgconfig +USES= compiler:c++11-lang gmake gnome libtool pkgconfig USE_GNOME= cairo gdkpixbuf2 gtk30 GNU_CONFIGURE= yes USE_LDCONFIG= yes - -CFLAGS_powerpc= -Wno-unused-value -CFLAGS_powerpc64= -Wno-unused-value -CFLAGS_powerpc64le= -Wno-unused-value -CFLAGS_powerpcspe= -Wno-unused-value -CFLAGS_mips= -Wno-unused-value -CFLAGS_mips64= -Wno-unused-value -CFLAGS_sparc64= -Wno-unused-value INSTALL_TARGET= install-strip