From owner-svn-ports-all@FreeBSD.ORG Mon Feb 24 23:05:11 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D325F444; Mon, 24 Feb 2014 23:05:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BEE0C1279; Mon, 24 Feb 2014 23:05:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1ON5BpM065050; Mon, 24 Feb 2014 23:05:11 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1ON5AVW065045; Mon, 24 Feb 2014 23:05:10 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201402242305.s1ON5AVW065045@svn.freebsd.org> From: Jung-uk Kim Date: Mon, 24 Feb 2014 23:05:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345908 - in head/textproc: . libodfgen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2014 23:05:11 -0000 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@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 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 +@dirrm include/libodfgen-0.0/libodfgen +@dirrm include/libodfgen-0.0