From owner-svn-ports-head@freebsd.org Fri Nov 2 12:54:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B845310F5993; Fri, 2 Nov 2018 12:54:14 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6BF3986BE0; Fri, 2 Nov 2018 12:54:14 +0000 (UTC) (envelope-from dbaio@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 4C8032DA8; Fri, 2 Nov 2018 12:54:14 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wA2CsErf089584; Fri, 2 Nov 2018 12:54:14 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wA2CsEZh089583; Fri, 2 Nov 2018 12:54:14 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201811021254.wA2CsEZh089583@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Fri, 2 Nov 2018 12:54:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483802 - head/x11-wm/awesome X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/x11-wm/awesome X-SVN-Commit-Revision: 483802 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.29 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, 02 Nov 2018 12:54:14 -0000 Author: dbaio Date: Fri Nov 2 12:54:13 2018 New Revision: 483802 URL: https://svnweb.freebsd.org/changeset/ports/483802 Log: x11-wm/awesome: Fix build with GCC-based architectures This port requires C11-aware compiler. Add USES=compiler:c11 to fix build on GCC architectures. Take MAINTAINER'ship. PR: 232855 [1] Submitted by: Piotr Kubaj [1] Approved by: garga (maintainer, IRC) Sponsored by: IntegriCloud [1] Modified: head/x11-wm/awesome/Makefile Modified: head/x11-wm/awesome/Makefile ============================================================================== --- head/x11-wm/awesome/Makefile Fri Nov 2 11:44:15 2018 (r483801) +++ head/x11-wm/awesome/Makefile Fri Nov 2 12:54:13 2018 (r483802) @@ -8,7 +8,7 @@ DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= x11-wm -MAINTAINER= garga@FreeBSD.org +MAINTAINER= dbaio@FreeBSD.org COMMENT= Highly configurable, next generation framework window manager LICENSE= GPLv2+ @@ -28,13 +28,11 @@ LIB_DEPENDS= libcairo.so:graphics/cairo \ libxcb-xrm.so:x11/xcb-util-xrm \ libxkbcommon.so:x11/libxkbcommon -BROKEN_powerpc64= fails to compile: stack.h: redefinition of typedef 'client_t' - CONFLICTS_INSTALL= awesome3-[0-9]* +USES= cmake:outsource compiler:c11 gettext iconv pkgconfig lua shebangfix USE_GITHUB= yes GH_ACCOUNT= awesomewm -USES= cmake:outsource gettext iconv pkgconfig lua shebangfix SHEBANG_FILES= utils/awesome-client CMAKE_ARGS= -DSYSCONFDIR=${PREFIX}/etc \ -DAWESOME_MAN_PATH=${MANPREFIX}/man \