From owner-svn-ports-head@freebsd.org Mon May 13 20:19:22 2019 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 6E664159A375; Mon, 13 May 2019 20:19:22 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 116086C373; Mon, 13 May 2019 20:19:22 +0000 (UTC) (envelope-from kwm@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 02A1AED6D; Mon, 13 May 2019 20:19:22 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4DKJLi8003594; Mon, 13 May 2019 20:19:21 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4DKJLak003590; Mon, 13 May 2019 20:19:21 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201905132019.x4DKJLak003590@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 13 May 2019 20:19:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501596 - in head/print: . libraqm X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: in head/print: . libraqm X-SVN-Commit-Revision: 501596 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 116086C373 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Mon, 13 May 2019 20:19:22 -0000 Author: kwm Date: Mon May 13 20:19:20 2019 New Revision: 501596 URL: https://svnweb.freebsd.org/changeset/ports/501596 Log: Add libraqm, which is a small library that encapsulates the logic for complex text layout and provide a convenient API. Added: head/print/libraqm/ head/print/libraqm/Makefile (contents, props changed) head/print/libraqm/distinfo (contents, props changed) head/print/libraqm/pkg-descr (contents, props changed) head/print/libraqm/pkg-plist (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Mon May 13 20:17:19 2019 (r501595) +++ head/print/Makefile Mon May 13 20:19:20 2019 (r501596) @@ -109,6 +109,7 @@ SUBDIR += libotf SUBDIR += libpagemaker SUBDIR += libpaper + SUBDIR += libraqm SUBDIR += libspectre SUBDIR += lilypond SUBDIR += lilypond-devel Added: head/print/libraqm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libraqm/Makefile Mon May 13 20:19:20 2019 (r501596) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= libraqm +PORTVERSION= 0.6.0 +CATEGORIES= print +MASTER_SITES= https://github.com/HOST-Oman/libraqm/releases/download/v${PORTVERSION}/ +DISTNAME= raqm-${PORTVERSION} + +MAINTAINER= kwm@FreeBSD.org +COMMENT= Library that encapsulates complex text layout logic + +LICENSE= MIT + +LIB_DEPENDS= libfribidi.so:converters/fribidi \ + libharfbuzz.so:print/harfbuzz \ + libfreetype.so:print/freetype2 + +USES= gmake libtool pkgconfig + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +.include Added: head/print/libraqm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libraqm/distinfo Mon May 13 20:19:20 2019 (r501596) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557777780 +SHA256 (raqm-0.6.0.tar.gz) = 37ccb06bcedd2e1340137086841ca8929fd728627bd1d707daba448d5c7b111a +SIZE (raqm-0.6.0.tar.gz) = 678695 Added: head/print/libraqm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libraqm/pkg-descr Mon May 13 20:19:20 2019 (r501596) @@ -0,0 +1,8 @@ +Raqm is a small library that encapsulates the logic for complex text layout +and provide a convenient API. + +It currently provides bidirectional text support (using FriBiDi), shaping +(using HarfBuzz), and proper script itemization. As a result, Raqm can +support most writing systems covered by Unicode. + +WWW: https://github.com/HOST-Oman/libraqm Added: head/print/libraqm/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libraqm/pkg-plist Mon May 13 20:19:20 2019 (r501596) @@ -0,0 +1,21 @@ +include/raqm.h +lib/libraqm.a +lib/libraqm.so +lib/libraqm.so.0 +lib/libraqm.so.0.600.0 +libdata/pkgconfig/raqm.pc +share/gtk-doc/html/raqm/annotation-glossary.html +share/gtk-doc/html/raqm/api-index-full.html +share/gtk-doc/html/raqm/ch01.html +share/gtk-doc/html/raqm/home.png +share/gtk-doc/html/raqm/index.html +share/gtk-doc/html/raqm/left-insensitive.png +share/gtk-doc/html/raqm/left.png +share/gtk-doc/html/raqm/object-tree.html +share/gtk-doc/html/raqm/raqm-Raqm.html +share/gtk-doc/html/raqm/raqm.devhelp2 +share/gtk-doc/html/raqm/right-insensitive.png +share/gtk-doc/html/raqm/right.png +share/gtk-doc/html/raqm/style.css +share/gtk-doc/html/raqm/up-insensitive.png +share/gtk-doc/html/raqm/up.png