svn commit: r345908 - in head/textproc: . libodfgen

Jung-uk Kim jkim at FreeBSD.org
Mon Feb 24 23:05:11 UTC 2014


Author: jkim
Date: Mon Feb 24 23:05:10 2014
New Revision: 345908
URL: http://svnweb.freebsd.org/changeset/ports/345908
QAT: https://qat.redports.org/buildarchive/r345908/

Log:
  libodfgen is a library for generating documents in Open Document Format
  (ODF).  It provides generator implementation for the following libraries:
  
  * libwpd (::WPXDocumentInterface): text documents
  * libwpg (libwpg::WPGPaintInterface): vector drawings
  * libetonyek (libetonyek::KEYPresentationInterface): presentations
  
  As these APIs are used by multiple libraries, libodfgen can be used to
  generate ODF from many sources.
  
  WWW: http://libwpd.sourceforge.net/

Added:
  head/textproc/libodfgen/
  head/textproc/libodfgen/Makefile   (contents, props changed)
  head/textproc/libodfgen/distinfo   (contents, props changed)
  head/textproc/libodfgen/pkg-descr   (contents, props changed)
  head/textproc/libodfgen/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Mon Feb 24 23:02:53 2014	(r345907)
+++ head/textproc/Makefile	Mon Feb 24 23:05:10 2014	(r345908)
@@ -362,6 +362,7 @@
     SUBDIR += libmrss-php
     SUBDIR += libmwaw
     SUBDIR += libnxml
+    SUBDIR += libodfgen
     SUBDIR += libparsifal
     SUBDIR += libroxml
     SUBDIR += libsoldout

Added: head/textproc/libodfgen/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libodfgen/Makefile	Mon Feb 24 23:05:10 2014	(r345908)
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+PORTNAME=	libodfgen
+PORTVERSION=	0.0.4
+CATEGORIES=	textproc
+MASTER_SITES=	SF/libwpd/${PORTNAME}/${PORTNAME}-${PORTVERSION}
+
+MAINTAINER=	office at FreeBSD.org
+COMMENT=	Library for reading and writing Corel WordPerfect(tm) documents
+
+LICENSE=	LGPL21 MPL
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
+LIB_DEPENDS=	libetonyek-0.0.so:${PORTSDIR}/graphics/libetonyek \
+		libwpg-0.2.so:${PORTSDIR}/graphics/libwpg \
+		libwpd-0.9.so:${PORTSDIR}/textproc/libwpd
+
+OPTIONS_DEFINE=	DOCS
+
+CONFIGURE_ARGS=	--disable-werror
+CPPFLAGS+=	-I${LOCALBASE}/include
+
+USE_AUTOTOOLS=	libtool
+USE_LDCONFIG=	yes
+USE_XZ=		yes
+USES=		pkgconfig pathfix
+
+PORTDOCS=	*
+DOCS_BUILD_DEPENDS=	doxygen:${PORTSDIR}/devel/doxygen
+DOCS_CONFIGURE_OFF=	--without-docs
+
+.include <bsd.port.mk>

Added: head/textproc/libodfgen/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libodfgen/distinfo	Mon Feb 24 23:05:10 2014	(r345908)
@@ -0,0 +1,2 @@
+SHA256 (libodfgen-0.0.4.tar.xz) = 8f7a46f05417afbe957d0c3f88e375631b8651ea99bb2c231595408bc4224099
+SIZE (libodfgen-0.0.4.tar.xz) = 296224

Added: head/textproc/libodfgen/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libodfgen/pkg-descr	Mon Feb 24 23:05:10 2014	(r345908)
@@ -0,0 +1,11 @@
+libodfgen is a library for generating documents in Open Document Format
+(ODF).  It provides generator implementation for the following libraries:
+
+* libwpd (::WPXDocumentInterface): text documents
+* libwpg (libwpg::WPGPaintInterface): vector drawings
+* libetonyek (libetonyek::KEYPresentationInterface): presentations
+
+As these APIs are used by multiple libraries, libodfgen can be used to
+generate ODF from many sources.
+
+WWW: http://libwpd.sourceforge.net/

Added: head/textproc/libodfgen/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libodfgen/pkg-plist	Mon Feb 24 23:05:10 2014	(r345908)
@@ -0,0 +1,12 @@
+include/libodfgen-0.0/libodfgen/OdfDocumentHandler.hxx
+include/libodfgen-0.0/libodfgen/OdgGenerator.hxx
+include/libodfgen-0.0/libodfgen/OdpGenerator.hxx
+include/libodfgen-0.0/libodfgen/OdtGenerator.hxx
+include/libodfgen-0.0/libodfgen/libodfgen.hxx
+lib/libodfgen-0.0.a
+lib/libodfgen-0.0.la
+lib/libodfgen-0.0.so
+lib/libodfgen-0.0.so.0
+libdata/pkgconfig/libodfgen-0.0.pc
+ at dirrm include/libodfgen-0.0/libodfgen
+ at dirrm include/libodfgen-0.0


More information about the svn-ports-all mailing list