From owner-svn-ports-all@freebsd.org Wed Sep 30 10:58:52 2020 Return-Path: Delivered-To: svn-ports-all@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 F402B424D05; Wed, 30 Sep 2020 10:58:51 +0000 (UTC) (envelope-from se@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 4C1YCb5zSnz46K9; Wed, 30 Sep 2020 10:58:51 +0000 (UTC) (envelope-from se@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 B1A881E92B; Wed, 30 Sep 2020 10:58:51 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08UAwpUx018535; Wed, 30 Sep 2020 10:58:51 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08UAwpDm018533; Wed, 30 Sep 2020 10:58:51 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009301058.08UAwpDm018533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Wed, 30 Sep 2020 10:58:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550679 - in head/games/pioneers: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/games/pioneers: . files X-SVN-Commit-Revision: 550679 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 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: Wed, 30 Sep 2020 10:58:52 -0000 Author: se Date: Wed Sep 30 10:58:50 2020 New Revision: 550679 URL: https://svnweb.freebsd.org/changeset/ports/550679 Log: Fix build with -fno-common While here add dependencies reported as missing by stage-qa. Added: head/games/pioneers/files/ head/games/pioneers/files/patch-common_game.h (contents, props changed) Modified: head/games/pioneers/Makefile Modified: head/games/pioneers/Makefile ============================================================================== --- head/games/pioneers/Makefile Wed Sep 30 10:49:17 2020 (r550678) +++ head/games/pioneers/Makefile Wed Sep 30 10:58:50 2020 (r550679) @@ -3,6 +3,7 @@ PORTNAME= pioneers PORTVERSION= 15.5 +PORTREVISION= 1 CATEGORIES= games gnome MASTER_SITES= SF/pio/Source @@ -13,10 +14,12 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= itstool:textproc/itstool +LIB_DEPENDS= libavahi-common.so:net/avahi-app \ + libnotify.so:devel/libnotify RUN_DEPENDS= yelp:x11/yelp USES= gettext gmake gnome pkgconfig -USE_GNOME= gnomeprefix gtk30 intltool libgnome librsvg2 +USE_GNOME= cairo gnomeprefix gtk30 intltool libgnome librsvg2 INSTALLS_ICONS= yes INSTALLS_OMF= yes GNU_CONFIGURE= yes Added: head/games/pioneers/files/patch-common_game.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/pioneers/files/patch-common_game.h Wed Sep 30 10:58:50 2020 (r550679) @@ -0,0 +1,11 @@ +--- common/game.h.orig 2018-03-14 13:44:46 UTC ++++ common/game.h +@@ -137,7 +137,7 @@ typedef enum { + typedef void (*WriteLineFunc) (gpointer user_data, const gchar *); + + /** Default style for a player. */ +-const gchar *default_player_style; ++extern const gchar *default_player_style; + + GameParams *params_new(void); + GameParams *params_copy(const GameParams * params);