1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | platform darwin { |
---|
5 | if {${os.major} < 13} { |
---|
6 | PortGroup cxx11 1.1 |
---|
7 | } |
---|
8 | } |
---|
9 | |
---|
10 | name libodfgen |
---|
11 | version 0.1.7 |
---|
12 | maintainers gmail.com:rjvbertin |
---|
13 | categories textproc |
---|
14 | platforms darwin |
---|
15 | license LGPL-2+ |
---|
16 | |
---|
17 | description libodfgen is a library for generating documents in Open Document Format (ODF). |
---|
18 | long_description ${description} It provides generator implementation for the \ |
---|
19 | following libraries: \ |
---|
20 | * libwpd (::WPXDocumentInterface): text documents \ |
---|
21 | * libwpg (libwpg::WPGPaintInterface): vector drawings \ |
---|
22 | * libetonyek (libetonyek::KEYPresentationInterface): presentations \ |
---|
23 | As these APIs are used by multiple libraries, libodfgen can be used to \ |
---|
24 | generate ODF from many sources. |
---|
25 | |
---|
26 | homepage http://libwpd.sourceforge.net/ |
---|
27 | master_sites sourceforge:project/libwpd/libodfgen/libodfgen-${version} |
---|
28 | |
---|
29 | use_xz yes |
---|
30 | |
---|
31 | checksums rmd160 b65e5504731bd0d24e411eb44c6371658c9f42f8 \ |
---|
32 | sha256 323e491f956c8ca2abb12c998e350670930a32317bf9662b0615dd4b3922b831 \ |
---|
33 | size 384760 |
---|
34 | |
---|
35 | depends_build port:pkgconfig |
---|
36 | |
---|
37 | depends_lib port:boost \ |
---|
38 | port:libwpd-0.10 \ |
---|
39 | port:libwpg-0.3 |
---|
40 | |
---|
41 | configure.args --without-docs --disable-werror |
---|
42 | |
---|
43 | variant docs description {Build API documentation} { |
---|
44 | depends_build-append port:doxygen |
---|
45 | configure.args-delete --without-docs |
---|
46 | } |
---|
47 | |
---|
48 | livecheck.regex /${name}-(\[0-9.\]+)${extract.suffix} |
---|