From owner-svn-ports-all@freebsd.org Wed Feb 21 03:12:51 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7AFBF24CE4; Wed, 21 Feb 2018 03:12:50 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 63E3E810E5; Wed, 21 Feb 2018 03:12:50 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5E5D012DDA; Wed, 21 Feb 2018 03:12:50 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1L3CooU060550; Wed, 21 Feb 2018 03:12:50 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1L3CnW0060545; Wed, 21 Feb 2018 03:12:49 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201802210312.w1L3CnW0060545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Wed, 21 Feb 2018 03:12:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462471 - in head/textproc: . libepubgen X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/textproc: . libepubgen X-SVN-Commit-Revision: 462471 X-SVN-Commit-Repository: ports 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.25 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: Wed, 21 Feb 2018 03:12:51 -0000 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 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 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