mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add libotf 0.9,
The library "libotf" provides the following facilites: o Read Open Type Layout Tables from OTF file. Currently these tables are supported; head, name, cmap, GDEF, GSUB, and GPOS. o Convert a Unicode character sequence to a glyph code sequence by using the above tables. PR: ports/66816 Submitted by: Kimura Fuyuki <fuyuki@hadaly.org>
This commit is contained in:
parent
93fc3ec564
commit
dba55a2a19
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=109494
6 changed files with 61 additions and 0 deletions
|
@ -124,6 +124,7 @@
|
|||
SUBDIR += libgnomecups
|
||||
SUBDIR += libgnomeprint
|
||||
SUBDIR += libijs
|
||||
SUBDIR += libotf
|
||||
SUBDIR += libpaper
|
||||
SUBDIR += libpdf++
|
||||
SUBDIR += lilypond
|
||||
|
|
25
print/libotf/Makefile
Normal file
25
print/libotf/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# New ports collection makefile for: libotf
|
||||
# Date created: 18 May 2004
|
||||
# Whom: Kimura Fuyuki <fuyuki@hadaly.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libotf
|
||||
PORTVERSION= 0.9
|
||||
CATEGORIES= print devel
|
||||
MASTER_SITES= http://tsukuba.m17n.org/libotf/
|
||||
|
||||
MAINTAINER= fuyuki@hadaly.org
|
||||
COMMENT= Library for handling OpenType fonts
|
||||
|
||||
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2
|
||||
|
||||
USE_XLIB= yes
|
||||
USE_LIBTOOL_VER= 15
|
||||
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
MAKE_ARGS= AM_CPPFLAGS="-I${X11BASE}/include"
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.include <bsd.port.mk>
|
2
print/libotf/distinfo
Normal file
2
print/libotf/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (libotf-0.9.tar.gz) = 09fd82c268718f95cd367c3b6faddfe2
|
||||
SIZE (libotf-0.9.tar.gz) = 256323
|
15
print/libotf/files/patch-ltmain.sh
Normal file
15
print/libotf/files/patch-ltmain.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
--- ltmain.sh.orig Wed May 19 11:37:50 2004
|
||||
+++ ltmain.sh Wed May 19 11:38:28 2004
|
||||
@@ -4247,10 +4247,12 @@
|
||||
fi
|
||||
|
||||
# Install the pseudo-library for information purposes.
|
||||
+ if /usr/bin/false; then
|
||||
name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
|
||||
instname="$dir/$name"i
|
||||
$show "$install_prog $instname $destdir/$name"
|
||||
$run eval "$install_prog $instname $destdir/$name" || exit $?
|
||||
+ fi
|
||||
|
||||
# Maybe install the static library, too.
|
||||
test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
|
9
print/libotf/pkg-descr
Normal file
9
print/libotf/pkg-descr
Normal file
|
@ -0,0 +1,9 @@
|
|||
The library "libotf" provides the following facilites.
|
||||
|
||||
o Read Open Type Layout Tables from OTF file. Currently these
|
||||
tables are supported; head, name, cmap, GDEF, GSUB, and GPOS.
|
||||
|
||||
o Convert a Unicode character sequence to a glyph code sequence by
|
||||
using the above tables.
|
||||
|
||||
WWW: http://tsukuba.m17n.org/libotf/
|
9
print/libotf/pkg-plist
Normal file
9
print/libotf/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
|||
bin/libotf-config
|
||||
bin/otfdump
|
||||
bin/otflist
|
||||
bin/otftobdf
|
||||
bin/otfview
|
||||
include/otf.h
|
||||
lib/libotf.a
|
||||
lib/libotf.so
|
||||
lib/libotf.so.0
|
Loading…
Add table
Reference in a new issue