From owner-svn-ports-head@freebsd.org Wed Oct 24 13:51:18 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 35991FE5761; Wed, 24 Oct 2018 13:51:18 +0000 (UTC) (envelope-from ehaupt@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 0851D900A2; Wed, 24 Oct 2018 13:51:18 +0000 (UTC) (envelope-from ehaupt@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 CD5BE2B1D9; Wed, 24 Oct 2018 13:51:10 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9ODpADY079449; Wed, 24 Oct 2018 13:51:10 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9ODpAjn079448; Wed, 24 Oct 2018 13:51:10 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201810241351.w9ODpAjn079448@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 24 Oct 2018 13:51:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482907 - in head/x11-fonts: emojione-color-font-ttf twemoji-color-font-ttf X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/x11-fonts: emojione-color-font-ttf twemoji-color-font-ttf X-SVN-Commit-Revision: 482907 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: Wed, 24 Oct 2018 13:51:18 -0000 Author: ehaupt Date: Wed Oct 24 13:51:10 2018 New Revision: 482907 URL: https://svnweb.freebsd.org/changeset/ports/482907 Log: Fix variable assignment operator. Notified by: mat Modified: head/x11-fonts/emojione-color-font-ttf/Makefile head/x11-fonts/twemoji-color-font-ttf/Makefile Modified: head/x11-fonts/emojione-color-font-ttf/Makefile ============================================================================== --- head/x11-fonts/emojione-color-font-ttf/Makefile Wed Oct 24 13:09:39 2018 (r482906) +++ head/x11-fonts/emojione-color-font-ttf/Makefile Wed Oct 24 13:51:10 2018 (r482907) @@ -13,8 +13,8 @@ COMMENT= Color emoji font using EmojiOne Unicode 9.0 LICENSE= CC-BY-4.0 MIT LICENSE_COMB= multi -LICENSE_FILE_CC-BY-4.0+= ${WRKSRC}/LICENSE-CC-BY.txt -LICENSE_FILE_MIT+= ${WRKSRC}/LICENSE-MIT.txt +LICENSE_FILE_CC-BY-4.0= ${WRKSRC}/LICENSE-CC-BY.txt +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT.txt DEPRECATED= EOL upstream, please use x11-fonts/twemoji-color-font-ttf instead EXPIRATION_DATE= 2018-11-18 Modified: head/x11-fonts/twemoji-color-font-ttf/Makefile ============================================================================== --- head/x11-fonts/twemoji-color-font-ttf/Makefile Wed Oct 24 13:09:39 2018 (r482906) +++ head/x11-fonts/twemoji-color-font-ttf/Makefile Wed Oct 24 13:51:10 2018 (r482907) @@ -12,8 +12,8 @@ COMMENT= Color emoji font using Twitter Unicode 10 LICENSE= CC-BY-4.0 MIT LICENSE_COMB= multi -LICENSE_FILE_CC-BY-4.0+= ${WRKSRC}/LICENSE-CC-BY.txt -LICENSE_FILE_MIT+= ${WRKSRC}/LICENSE-MIT.txt +LICENSE_FILE_CC-BY-4.0= ${WRKSRC}/LICENSE-CC-BY.txt +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT.txt USES= fonts