diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-11-28 19:57:46 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-11-28 20:04:07 +0100 |
commit | 235bf72d02fbb66698639d3eccff5cd6e2b72e5d (patch) | |
tree | dbee04c9187f1f8f12ca37c163b2acc8ce600b07 /app-text/libwps | |
parent | app-office/libreoffice: Depends on libepoxy[X] (diff) | |
download | gentoo-235bf72d02fbb66698639d3eccff5cd6e2b72e5d.tar.gz gentoo-235bf72d02fbb66698639d3eccff5cd6e2b72e5d.tar.bz2 gentoo-235bf72d02fbb66698639d3eccff5cd6e2b72e5d.zip |
app-text/libwps: 0.4.8 version bump
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'app-text/libwps')
-rw-r--r-- | app-text/libwps/Manifest | 3 | ||||
-rw-r--r-- | app-text/libwps/libwps-0.4.8.ebuild | 35 |
2 files changed, 37 insertions, 1 deletions
diff --git a/app-text/libwps/Manifest b/app-text/libwps/Manifest index 1f7ac1915902..80727c38495b 100644 --- a/app-text/libwps/Manifest +++ b/app-text/libwps/Manifest @@ -1 +1,2 @@ -DIST libwps-0.4.7.tar.xz 595580 SHA256 2f2cab630bceace24f9dbb7d187cd6cd1f4c9f8a7b682c5f7e49c1e2cb58b217 SHA512 d38b778016f8ca6a44edba86177d28a3f0bcd338e57276a615eeb9d470def71aa9326c3077789129418b38e88ae6f6d1901d08f5716081ba2eb9847a133c96da WHIRLPOOL 8dd7cc93f9a9da8e1685ab40c9a8fbe92bc0b1ca1c2888c9d70681156fdaea918dcef2bc6ed31f8d0d6a1345009275cb5517cdb513bea8abd90c17b124aba5e7 +DIST libwps-0.4.7.tar.xz 595580 BLAKE2B 697d0572aa8dccc732b5ff3f23c3bacf2a82ea77442e819172a03a8b906aaee010fc992419d161f573efb3c998cc8d001a7431e16996f5348fe4aa80b8060bdd SHA512 d38b778016f8ca6a44edba86177d28a3f0bcd338e57276a615eeb9d470def71aa9326c3077789129418b38e88ae6f6d1901d08f5716081ba2eb9847a133c96da +DIST libwps-0.4.8.tar.xz 648512 BLAKE2B b446c9999ff0e760569daa52fd24e42af8cdda78f2c0bc77d26cc25957381456f045dde1eb4ec8bd7999de29f658d67b2a493fdeacde4faa12a00aa28725603f SHA512 bf5d7aeb6f06e87f15ec8e911fb6436fb4e14839123db71488638f0e658034ad4ea8849ed83926af2fab9b50a7ef7410199d4a1102abc63c83d37bf1966a4afb diff --git a/app-text/libwps/libwps-0.4.8.ebuild b/app-text/libwps/libwps-0.4.8.ebuild new file mode 100644 index 000000000000..d52a852a39eb --- /dev/null +++ b/app-text/libwps/libwps-0.4.8.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Microsoft Works file word processor format import filter library" +HOMEPAGE="https://sourceforge.net/p/libwps/wiki/Home/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + +LICENSE="|| ( LGPL-2.1 MPL-2.0 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~x86" +IUSE="doc debug static-libs tools" + +RDEPEND=" + dev-libs/librevenge +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +src_configure() { + econf \ + --disable-werror \ + $(use_enable debug) \ + $(use_with doc docs) \ + $(use_enable static-libs static) \ + $(use_enable tools) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |