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 | # $Id: Portfile 120780 2014-06-07 01:38:18Z devans@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name libodfgen |
---|
7 | version 0.1.1 |
---|
8 | maintainers gmail.com:rjvbertin |
---|
9 | categories textproc |
---|
10 | platforms darwin |
---|
11 | license LGPL-2+ |
---|
12 | |
---|
13 | description libodfgen is a library for generating documents in Open Document Format (ODF). |
---|
14 | long_description ${description} It provides generator implementation for the \ |
---|
15 | following libraries: \ |
---|
16 | * libwpd (::WPXDocumentInterface): text documents \ |
---|
17 | * libwpg (libwpg::WPGPaintInterface): vector drawings \ |
---|
18 | * libetonyek (libetonyek::KEYPresentationInterface): presentations \ |
---|
19 | As these APIs are used by multiple libraries, libodfgen can be used to \ |
---|
20 | generate ODF from many sources. |
---|
21 | |
---|
22 | homepage http://libwpd.sourceforge.net/ |
---|
23 | master_sites sourceforge:project/libwpd/libodfgen/libodfgen-${version} |
---|
24 | |
---|
25 | use_xz yes |
---|
26 | |
---|
27 | checksums rmd160 42848047bff4176f8727170233b8ab5060d70e4b \ |
---|
28 | sha256 9521e2c9aa13d84799ce476e97a6549eb9de4acd190cad357d87a540452d63dc |
---|
29 | |
---|
30 | depends_build port:pkgconfig |
---|
31 | |
---|
32 | depends_lib port:boost \ |
---|
33 | port:libwpd-0.10 \ |
---|
34 | port:libwpg-0.3 |
---|
35 | |
---|
36 | configure.args --without-docs --disable-werror |
---|
37 | |
---|
38 | variant docs description {Build API documentation} { |
---|
39 | depends_build-append port:doxygen |
---|
40 | configure.args-delete --without-docs |
---|
41 | } |
---|
42 | |
---|
43 | livecheck.regex /${name}-(\[0-9.\]+)${extract.suffix} |
---|