From owner-svn-ports-head@freebsd.org Sat Nov 19 18:21:45 2016 Return-Path: Delivered-To: svn-ports-head@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 B07E8C4BFCE; Sat, 19 Nov 2016 18:21:45 +0000 (UTC) (envelope-from jbeich@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 8DA1B90C; Sat, 19 Nov 2016 18:21:45 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAJILi8f013818; Sat, 19 Nov 2016 18:21:44 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAJILi8b013813; Sat, 19 Nov 2016 18:21:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611191821.uAJILi8b013813@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 19 Nov 2016 18:21:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426526 - in head/devel: . icu-le-hb X-SVN-Group: ports-head 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.23 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: Sat, 19 Nov 2016 18:21:45 -0000 Author: jbeich Date: Sat Nov 19 18:21:44 2016 New Revision: 426526 URL: https://svnweb.freebsd.org/changeset/ports/426526 Log: devel/icu-le-hb: add new port PR: 214384 Exp-run by: antoine Approved by: office (bapt) icu-le-hb is a library implementing the ICU Layout Engine (icu-le) API using external HarfBuzz library for implementation. This is useful as a compatibility layer to make applications using ICU Layout Engine to use HarfBuzz without porting them to use the HarfBuzz API. The code is mostly a trimmed down version of icu/source/layout, with all shapers stripped out, and HarfBuzz integrated. http://www.freedesktop.org/wiki/Software/HarfBuzz/ Added: head/devel/icu-le-hb/ head/devel/icu-le-hb/Makefile (contents, props changed) head/devel/icu-le-hb/distinfo (contents, props changed) head/devel/icu-le-hb/pkg-descr (contents, props changed) head/devel/icu-le-hb/pkg-plist (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Nov 19 18:21:20 2016 (r426525) +++ head/devel/Makefile Sat Nov 19 18:21:44 2016 (r426526) @@ -1082,6 +1082,7 @@ SUBDIR += ice SUBDIR += icmake SUBDIR += icu + SUBDIR += icu-le-hb SUBDIR += idutils SUBDIR += imake SUBDIR += include-what-you-use Added: head/devel/icu-le-hb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/icu-le-hb/Makefile Sat Nov 19 18:21:44 2016 (r426526) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= icu-le-hb +PORTVERSION= 1.0.3 +CATEGORIES= devel print +MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ + +MAINTAINER= office@FreeBSD.org +COMMENT= ICU Layout Engine API on top of HarfBuzz shaping library + +LICENSE= ICU +LICENSE_NAME= ICU license +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +LIB_DEPENDS= libicuuc.so:devel/icu \ + libharfbuzz.so:print/harfbuzz + +USES= gmake libtool pathfix pkgconfig +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + +.include Added: head/devel/icu-le-hb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/icu-le-hb/distinfo Sat Nov 19 18:21:44 2016 (r426526) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478356493 +SHA256 (icu-le-hb-1.0.3.tar.gz) = f0f7b72126e0e8c1a8c2436afe09d305dfd114da12b623cc454ded3e8601f0df +SIZE (icu-le-hb-1.0.3.tar.gz) = 373474 Added: head/devel/icu-le-hb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/icu-le-hb/pkg-descr Sat Nov 19 18:21:44 2016 (r426526) @@ -0,0 +1,9 @@ +icu-le-hb is a library implementing the ICU Layout Engine (icu-le) API +using external HarfBuzz library for implementation. This is useful as +a compatibility layer to make applications using ICU Layout Engine to +use HarfBuzz without porting them to use the HarfBuzz API. + +The code is mostly a trimmed down version of icu/source/layout, with +all shapers stripped out, and HarfBuzz integrated. + +WWW: http://www.freedesktop.org/wiki/Software/HarfBuzz/ Added: head/devel/icu-le-hb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/icu-le-hb/pkg-plist Sat Nov 19 18:21:44 2016 (r426526) @@ -0,0 +1,16 @@ +include/icu-le-hb/layout/LEFontInstance.h +include/icu-le-hb/layout/LEGlyphFilter.h +include/icu-le-hb/layout/LEGlyphStorage.h +include/icu-le-hb/layout/LEInsertionList.h +include/icu-le-hb/layout/LELanguages.h +include/icu-le-hb/layout/LEScripts.h +include/icu-le-hb/layout/LESwaps.h +include/icu-le-hb/layout/LETypes.h +include/icu-le-hb/layout/LayoutEngine.h +include/icu-le-hb/layout/loengine.h +lib/libicu-le-hb.a +lib/libicu-le-hb.so +lib/libicu-le-hb.so.0 +lib/libicu-le-hb.so.0.0.0 +libdata/pkgconfig/icu-le-hb.pc +libdata/pkgconfig/icu-le.pc