svn commit: r501596 - in head/print: . libraqm
Koop Mast
kwm at FreeBSD.org
Mon May 13 20:19:22 UTC 2019
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 at 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 <bsd.port.mk>
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
More information about the svn-ports-head
mailing list