diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-21 21:38:06 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-21 21:45:38 +0200 |
commit | 459aa2f20cbd5c1ab849220b86575b7e99036eb9 (patch) | |
tree | 5cf65c55faaab91ea79a067209d12d80ddebb0b0 /app-text | |
parent | app-text/libqxp: New package (diff) | |
download | gentoo-459aa2f20cbd5c1ab849220b86575b7e99036eb9.tar.gz gentoo-459aa2f20cbd5c1ab849220b86575b7e99036eb9.tar.bz2 gentoo-459aa2f20cbd5c1ab849220b86575b7e99036eb9.zip |
app-text/libepubgen: New package
Required by app-office/libreoffice-6.
Gentoo-bug: 628138
Package-Manager: Portage-2.3.12, Repoman-2.3.3
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/libepubgen/Manifest | 1 | ||||
-rw-r--r-- | app-text/libepubgen/libepubgen-0.0.1.ebuild | 36 | ||||
-rw-r--r-- | app-text/libepubgen/metadata.xml | 8 |
3 files changed, 45 insertions, 0 deletions
diff --git a/app-text/libepubgen/Manifest b/app-text/libepubgen/Manifest new file mode 100644 index 000000000000..f0c9befe1c16 --- /dev/null +++ b/app-text/libepubgen/Manifest @@ -0,0 +1 @@ +DIST libepubgen-0.0.1.tar.xz 295780 SHA256 6e221ea10933bf6a80525e134c51e1adb6cdd67184c368fcdcb73ce8dbffeac7 SHA512 9add9c873ea0ad1b04fcfdfb987c7974b20f7e0c6c6b5a65b6ce5105a85318307fb9871ab60e998da649da378038f6df3722001940d00a7bc88af6dc87bd8945 WHIRLPOOL e90a196de03160f866bf0270e1a9b9a38fb9e8f2b03020dd1dace24fc8c324105a997b847e3285ec99e4ce77497b58e150dcc0c72b157ee40c5bae2d4dfe446d diff --git a/app-text/libepubgen/libepubgen-0.0.1.ebuild b/app-text/libepubgen/libepubgen-0.0.1.ebuild new file mode 100644 index 000000000000..508558384209 --- /dev/null +++ b/app-text/libepubgen/libepubgen-0.0.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="EPUB generator for librevenge" +HOMEPAGE="https://sourceforge.net/projects/libepubgen/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc test" + +RDEPEND=" + dev-libs/librevenge +" +DEPEND="${RDEPEND} + dev-libs/boost + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +src_configure() { + econf \ + --disable-weffc \ + --disable-werror \ + $(use_enable debug) \ + $(use_with doc docs) \ + $(use_enable test tests) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/app-text/libepubgen/metadata.xml b/app-text/libepubgen/metadata.xml new file mode 100644 index 000000000000..13ce236ee519 --- /dev/null +++ b/app-text/libepubgen/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>office@gentoo.org</email> + <name>Gentoo Office project</name> + </maintainer> +</pkgmetadata> |