graphite2: initial commit

This commit is contained in:
Tim Biermann 2019-06-11 23:45:45 +02:00
parent e6269a0893
commit 051648ff1b
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 53 additions and 0 deletions

20
graphite2/.footprint Normal file
View File

@ -0,0 +1,20 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/gr2fonttest
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/graphite2/
-rw-r--r-- root/root usr/include/graphite2/Font.h
-rw-r--r-- root/root usr/include/graphite2/Log.h
-rw-r--r-- root/root usr/include/graphite2/Segment.h
-rw-r--r-- root/root usr/include/graphite2/Types.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libgraphite2.la
lrwxrwxrwx root/root usr/lib/libgraphite2.so -> libgraphite2.so.3
lrwxrwxrwx root/root usr/lib/libgraphite2.so.3 -> libgraphite2.so.3.2.1
-rwxr-xr-x root/root usr/lib/libgraphite2.so.3.2.1
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/graphite2.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/graphite2/
-rw-r--r-- root/root usr/share/graphite2/graphite2-release.cmake
-rw-r--r-- root/root usr/share/graphite2/graphite2.cmake

5
graphite2/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33UqazdPJM1M4wObKsMeCUdS4rqN7zps6y8Ux5aLZb6JDIm11ZG+2JMqEj1HJbOK1EAXhJXERWSr2hbHsdCnZQA=
SHA256 (Pkgfile) = d8db40272cd4da9942774e2020e4b562cb60b5a5ba3947c88892062dc3a8dced
SHA256 (.footprint) = ce75900ef29914480cb47e943218a3ccb7b4675c4e7f8d32120ecbac8e6a499d
SHA256 (graphite2-1.3.13.tgz) = dd63e169b0d3cf954b397c122551ab9343e0696fb2045e1b326db0202d875f06

28
graphite2/Pkgfile Normal file
View File

@ -0,0 +1,28 @@
# Description: reimplementation of the SIL Graphite text processing engine.
# URL: https://github.com/silnrsi/graphite
# Maintainer: Tim Biermann, tbier at posteo dot de
# Packager: John Vogel, jvogel4 at stny dot rr dot com
# Depends on: cmake freetype python
# Optional: asciidoc dblatex doxygen graphviz
name=graphite2
version=1.3.13
release=1
source=(https://github.com/silnrsi/graphite/releases/download/$version/$name-$version.tgz)
build() {
mkdir build
cd build
cmake -G "Unix Makefiles" $SRC/$name-$version \
-DCMAKE_C_FLAGS:STRING="$CFLAGS" \
-DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE:STRING=Release \
-DGRAPHITE2_COMPARE_RENDERER=OFF
find . -type f ! -name "rules" ! -name "changelog" -exec sed -i -e 's/\-03//g' {} \;
make
make DESTDIR=$PKG install
}