Date: Wed, 21 Feb 2018 03:12:49 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462471 - in head/textproc: . libepubgen Message-ID: <201802210312.w1L3CnW0060545@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Wed Feb 21 03:12:49 2018 New Revision: 462471 URL: https://svnweb.freebsd.org/changeset/ports/462471 Log: add textproc/libepubgen library for generating documents in ePub format PR: 224284 Submitted by: Greg V <greg@unrelenting.technology> Added: head/textproc/libepubgen/ head/textproc/libepubgen/Makefile (contents, props changed) head/textproc/libepubgen/distinfo (contents, props changed) head/textproc/libepubgen/pkg-descr (contents, props changed) head/textproc/libepubgen/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Feb 21 01:56:35 2018 (r462470) +++ head/textproc/Makefile Wed Feb 21 03:12:49 2018 (r462471) @@ -416,6 +416,7 @@ SUBDIR += libcue SUBDIR += libe-book SUBDIR += libebml + SUBDIR += libepubgen SUBDIR += libextractor SUBDIR += libexttextcat SUBDIR += libflate Added: head/textproc/libepubgen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libepubgen/Makefile Wed Feb 21 03:12:49 2018 (r462471) @@ -0,0 +1,43 @@ +# $FreeBSD$ + +PORTNAME= libepubgen +PORTVERSION= 0.1.0 +CATEGORIES= textproc +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} + +MAINTAINER= greg@unrelenting.technology +COMMENT= Library for generating documents in ePub format + +LICENSE= MPL20 + +LIB_DEPENDS= librevenge-0.0.so:textproc/librevenge +BUILD_DEPENDS= ${LOCALBASE}/include/boost/algorithm/string/classification.hpp:devel/boost-libs \ + ${LOCALBASE}/include/boost/algorithm/string/join.hpp:devel/boost-libs \ + ${LOCALBASE}/include/boost/algorithm/string/split.hpp:devel/boost-libs \ + ${LOCALBASE}/include/boost/algorithm/string/trim.hpp:devel/boost-libs \ + ${LOCALBASE}/include/boost/assign/list_of.hpp:devel/boost-libs \ + ${LOCALBASE}/include/boost/cstdint.hpp:devel/boost-libs \ + ${LOCALBASE}/include/boost/functional/hash.hpp:devel/boost-libs + +CONFIGURE_ARGS= --disable-werror +CPPFLAGS+= -I${LOCALBASE}/include + +GNU_CONFIGURE= yes +USES= compiler:features libtool pathfix pkgconfig tar:xz +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +OPTIONS_DEFINE= DOXYGEN TEST +OPTIONS_DEFAULT= +OPTIONS_SUB= yes + +TEST_TARGET= check +TEST_LIB_DEPENDS= libxml2.so:textproc/libxml2 \ + libcppunit.so:devel/cppunit +TEST_CONFIGURE_ENABLE= tests + +PORTDOCS= * +DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen +DOXYGEN_CONFIGURE_OFF= --without-docs + +.include <bsd.port.mk> Added: head/textproc/libepubgen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libepubgen/distinfo Wed Feb 21 03:12:49 2018 (r462471) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517410235 +SHA256 (libepubgen-0.1.0.tar.xz) = eeaa2c19cc487c821b6477194a01b4373bce9368afb644d768d088935e3b3994 +SIZE (libepubgen-0.1.0.tar.xz) = 319652 Added: head/textproc/libepubgen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libepubgen/pkg-descr Wed Feb 21 03:12:49 2018 (r462471) @@ -0,0 +1,7 @@ +libepubgen is a library for generating documents in ePub format, implementing +librevenge document interfaces. It supports conversion of text documents, +presentations and vector drawings. Spreadsheets are not supported. As these +interfaces are used by multiple libraries, libepubgen can be used to generate +EPUB from many sources. + +WWW: http://libepubgen.sourceforge.net/ Added: head/textproc/libepubgen/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libepubgen/pkg-plist Wed Feb 21 03:12:49 2018 (r462471) @@ -0,0 +1,11 @@ +include/libepubgen-0.1/libepubgen/EPUBDrawingGenerator.h +include/libepubgen-0.1/libepubgen/EPUBPackage.h +include/libepubgen-0.1/libepubgen/EPUBPresentationGenerator.h +include/libepubgen-0.1/libepubgen/EPUBTextGenerator.h +include/libepubgen-0.1/libepubgen/libepubgen-api.h +include/libepubgen-0.1/libepubgen/libepubgen-decls.h +include/libepubgen-0.1/libepubgen/libepubgen.h +lib/libepubgen-0.1.so +lib/libepubgen-0.1.so.1 +lib/libepubgen-0.1.so.1.0.0 +libdata/pkgconfig/libepubgen-0.1.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802210312.w1L3CnW0060545>