1
0
forked from ports/contrib

libpagemaker: initial commit, version 0.0.4

This commit is contained in:
Tim Biermann 2019-08-11 11:14:05 +02:00
parent 338f15fbbe
commit 15a4a48634
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 39 additions and 0 deletions

17
libpagemaker/.footprint Normal file
View File

@ -0,0 +1,17 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/pmd2raw
-rwxr-xr-x root/root usr/bin/pmd2svg
-rwxr-xr-x root/root usr/bin/pmd2text
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/libpagemaker-0.0/
drwxr-xr-x root/root usr/include/libpagemaker-0.0/libpagemaker/
-rw-r--r-- root/root usr/include/libpagemaker-0.0/libpagemaker/PMDocument.h
-rw-r--r-- root/root usr/include/libpagemaker-0.0/libpagemaker/libpagemaker.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libpagemaker-0.0.la
lrwxrwxrwx root/root usr/lib/libpagemaker-0.0.so -> libpagemaker-0.0.so.0.0.4
lrwxrwxrwx root/root usr/lib/libpagemaker-0.0.so.0 -> libpagemaker-0.0.so.0.0.4
-rwxr-xr-x root/root usr/lib/libpagemaker-0.0.so.0.0.4
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libpagemaker-0.0.pc

5
libpagemaker/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38HuaJv2bCubqs7aPtUJzDLicBM0vO6IqrL73c1fm3NLO95HmWJjffNckSuRPxuKcljKnsfMvX7JDm9+cX+GjQg=
SHA256 (Pkgfile) = bedd697f2394829c89a02c0ae2d81d8f83a3f3bd1910806fe1024bd7429b2915
SHA256 (.footprint) = 6ec2157f87c26b9048c6b1fcebcb0aba54dba1fc207773bff02936abc82b376d
SHA256 (libpagemaker-0.0.4.tar.xz) = 66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d

17
libpagemaker/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: a library that parses the file format of Aldus/Adobe PageMaker documents
# URL: https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: librevenge
name=libpagemaker
version=0.0.4
release=1
source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-werror
make
make DESTDIR=$PKG install
}