1
0
forked from ports/contrib

libvisio: initial commit, version 0.1.6

This commit is contained in:
Tim Biermann 2019-08-11 11:14:09 +02:00
parent bca76aec4f
commit 2eb5acdab0
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 41 additions and 0 deletions

20
libvisio/.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/vsd2raw
-rwxr-xr-x root/root usr/bin/vsd2text
-rwxr-xr-x root/root usr/bin/vsd2xhtml
-rwxr-xr-x root/root usr/bin/vss2raw
-rwxr-xr-x root/root usr/bin/vss2text
-rwxr-xr-x root/root usr/bin/vss2xhtml
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/libvisio-0.1/
drwxr-xr-x root/root usr/include/libvisio-0.1/libvisio/
-rw-r--r-- root/root usr/include/libvisio-0.1/libvisio/VisioDocument.h
-rw-r--r-- root/root usr/include/libvisio-0.1/libvisio/libvisio.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libvisio-0.1.la
lrwxrwxrwx root/root usr/lib/libvisio-0.1.so -> libvisio-0.1.so.1.0.6
lrwxrwxrwx root/root usr/lib/libvisio-0.1.so.1 -> libvisio-0.1.so.1.0.6
-rwxr-xr-x root/root usr/lib/libvisio-0.1.so.1.0.6
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libvisio-0.1.pc

5
libvisio/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/GW2LzM2a5d9LqKkjO6lXBt9C9QLAifdJx8K1rAeraymS2HCM1HKu+LYBchvMdmr6bCOD1RMfynE0vEmX9jIAk=
SHA256 (Pkgfile) = b5f6e1b87c0e568ce995d4c2e06fe9357a5c20cac9ef9a3c86c6a12f37590d98
SHA256 (.footprint) = acb892ee394b107a66eb53fef4a56067609342add63d9ad399074b3e277caf55
SHA256 (libvisio-0.1.6.tar.xz) = fe1002d3671d53c09bc65e47ec948ec7b67e6fb112ed1cd10966e211a8bb50f9

16
libvisio/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: Library providing ability to interpret and import visio diagrams
# URL: https://wiki.documentfoundation.org/DLP/Libraries/libvisio
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: icu librevenge libxml2
name=libvisio
version=0.1.6
release=1
source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}