From owner-svn-ports-all@freebsd.org Mon Jul 24 17:01:35 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4F26CFE984; Mon, 24 Jul 2017 17:01:35 +0000 (UTC) (envelope-from bdrewery@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 mx1.freebsd.org (Postfix) with ESMTPS id A249F6F6B5; Mon, 24 Jul 2017 17:01:35 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6OH1YTk093352; Mon, 24 Jul 2017 17:01:34 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6OH1YHG093351; Mon, 24 Jul 2017 17:01:34 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201707241701.v6OH1YHG093351@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 24 Jul 2017 17:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r446537 - branches/2017Q3/devel/ccache X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: branches/2017Q3/devel/ccache X-SVN-Commit-Revision: 446537 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.23 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: Mon, 24 Jul 2017 17:01:35 -0000 Author: bdrewery Date: Mon Jul 24 17:01:34 2017 New Revision: 446537 URL: https://svnweb.freebsd.org/changeset/ports/446537 Log: MFH: r445062 r446536 - Fix LICENSE - Add LICENSE_FILE - Add links for gcc 8 Approved by: bdrewery@FreeBSD.org (maintainer, implicit) Fix ccache-memcached-static to actually build statically. This was broken by r440469. Pointyhat to: bdrewery Sponsored by: Dell EMC Isilon Approved by: portmgr (implicit) Modified: branches/2017Q3/devel/ccache/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/ccache/Makefile ============================================================================== --- branches/2017Q3/devel/ccache/Makefile Mon Jul 24 17:00:10 2017 (r446536) +++ branches/2017Q3/devel/ccache/Makefile Mon Jul 24 17:01:34 2017 (r446537) @@ -3,7 +3,7 @@ PORTNAME= ccache PORTVERSION= 3.3.4 -PORTREVISION= 3 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= http://www.samba.org/ftp/ccache/ \ LOCAL/bdrewery @@ -11,7 +11,8 @@ MASTER_SITES= http://www.samba.org/ftp/ccache/ \ MAINTAINER= bdrewery@FreeBSD.org COMMENT= Tool to minimize the compile time of C/C++ programs -LICENSE= GPLv3 +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/GPL-3.0.txt CONFLICTS_INSTALL= ccache-static-[0-9]* ccache-memcached-[0-9]* ccache-memcached-static-[0-9]* @@ -61,6 +62,8 @@ NO_CCACHE_DEPEND= yes OPTIONS_SUB= yes +STATIC_LDFLAGS= -static + .include . if ${COMPILER_TYPE} == clang @@ -75,7 +78,7 @@ PLIST_SUB+= CCLINKDIR="${CCLINKDIR}" CCACHE_COMPILERS+= icc icpc .endif -GNU_COMPILERS+= 34 42 43 44 45 46 47 48 49 5 6 7 +GNU_COMPILERS+= 34 42 43 44 45 46 47 48 49 5 6 7 8 CCACHE_COMPILERS+= cc c++ CC gcc g++ ${GNU_COMPILERS:S|^|gcc|} ${GNU_COMPILERS:S|^|g++|} .if ${PORT_OPTIONS:MCLANGLINK}