From owner-svn-ports-all@freebsd.org Sat Nov 11 07:31:59 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 D9F73E634AF; Sat, 11 Nov 2017 07:31:59 +0000 (UTC) (envelope-from yuri@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 B414477278; Sat, 11 Nov 2017 07:31:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAB7VwKe068494; Sat, 11 Nov 2017 07:31:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAB7VwoF068490; Sat, 11 Nov 2017 07:31:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711110731.vAB7VwoF068490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 11 Nov 2017 07:31:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453955 - in head/misc: . unicode-emoji X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . unicode-emoji X-SVN-Commit-Revision: 453955 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: Sat, 11 Nov 2017 07:32:00 -0000 Author: yuri Date: Sat Nov 11 07:31:58 2017 New Revision: 453955 URL: https://svnweb.freebsd.org/changeset/ports/453955 Log: New port: misc/unicode-emoji: Unicode emoji data files Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13011 Added: head/misc/unicode-emoji/ head/misc/unicode-emoji/Makefile (contents, props changed) head/misc/unicode-emoji/distinfo (contents, props changed) head/misc/unicode-emoji/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sat Nov 11 07:17:10 2017 (r453954) +++ head/misc/Makefile Sat Nov 11 07:31:58 2017 (r453955) @@ -476,6 +476,7 @@ SUBDIR += umodunpack SUBDIR += unclutter SUBDIR += unclutter-xfixes + SUBDIR += unicode-emoji SUBDIR += upclient SUBDIR += us-zipcodes SUBDIR += usbids Added: head/misc/unicode-emoji/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unicode-emoji/Makefile Sat Nov 11 07:31:58 2017 (r453955) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= unicode-emoji +DISTVERSION= 5.0 +CATEGORIES= misc +MASTER_SITES= http://www.unicode.org/Public/emoji/${DISTVERSION}/ +DISTFILES= emoji-data.txt emoji-sequences.txt emoji-test.txt emoji-variation-sequences.txt emoji-zwj-sequences.txt +DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} +EXTRACT_ONLY= # nothing to extract + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Unicode emoji data files + +LICENSE= BSD + +NO_BUILD= yes +NO_ARCH= yes + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/share/unicode/emoji +.for f in ${DISTFILES} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${f} ${STAGEDIR}${PREFIX}/share/unicode/emoji/$f +.endfor + +.for f in ${DISTFILES} +PLIST_FILES+= share/unicode/emoji/${f} +.endfor + +.include Added: head/misc/unicode-emoji/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unicode-emoji/distinfo Sat Nov 11 07:31:58 2017 (r453955) @@ -0,0 +1,11 @@ +TIMESTAMP = 1510207398 +SHA256 (unicode-emoji/5.0/emoji-data.txt) = ae7bb765f0ae7ccfdcb5d8a40ebcabc93202597d92391c698f82f99d73f94e86 +SIZE (unicode-emoji/5.0/emoji-data.txt) = 35041 +SHA256 (unicode-emoji/5.0/emoji-sequences.txt) = 617d0df67f9e1f294a17a9525ff6323d2a9c9403c80e3ac16b8ad65adc897125 +SIZE (unicode-emoji/5.0/emoji-sequences.txt) = 103383 +SHA256 (unicode-emoji/5.0/emoji-test.txt) = fcb5b1dab310dc8210af46372828453431fa6ecdafdae8e051cbb68eb698380c +SIZE (unicode-emoji/5.0/emoji-test.txt) = 341770 +SHA256 (unicode-emoji/5.0/emoji-variation-sequences.txt) = 0609bcfc939a5799dd93f4a16b066210482d106dbf7827efbdf5ea83d7238ff2 +SIZE (unicode-emoji/5.0/emoji-variation-sequences.txt) = 36120 +SHA256 (unicode-emoji/5.0/emoji-zwj-sequences.txt) = b8080a9b282289d1ba302a2d48a6b01ebb9b4766a6864a037a69cb6acefefb99 +SIZE (unicode-emoji/5.0/emoji-zwj-sequences.txt) = 115207 Added: head/misc/unicode-emoji/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unicode-emoji/pkg-descr Sat Nov 11 07:31:58 2017 (r453955) @@ -0,0 +1,8 @@ +The collection of emoji data files for UTR #51 Unicode Emoji. + +Emoji are pictographs (pictorial symbols) that are typically presented +in a colorful form and used inline in text. They represent things such +as faces, weather, vehicles and buildings, food and drink, animals and +plants, or icons that represent emotions, feelings, or activities. + +WWW: http://www.unicode.org/emoji