diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-08 20:51:07 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-08 21:08:16 +0200 |
commit | 3a81c9f3ae11e753ff9fd7c06e89a389771d6f47 (patch) | |
tree | 4d4f14a15017e4b481635f2a59c76f301cf8fe34 /app-text/libexttextcat | |
parent | media-libs/libzmf: 0.0.2 version bump (diff) | |
download | gentoo-3a81c9f3ae11e753ff9fd7c06e89a389771d6f47.tar.gz gentoo-3a81c9f3ae11e753ff9fd7c06e89a389771d6f47.tar.bz2 gentoo-3a81c9f3ae11e753ff9fd7c06e89a389771d6f47.zip |
app-text/libexttextcat: 3.4.5 version bump, EAPI 6
Package-Manager: Portage-2.3.11, Repoman-2.3.3
Diffstat (limited to 'app-text/libexttextcat')
-rw-r--r-- | app-text/libexttextcat/Manifest | 1 | ||||
-rw-r--r-- | app-text/libexttextcat/libexttextcat-3.4.5.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/app-text/libexttextcat/Manifest b/app-text/libexttextcat/Manifest index 2bf0efcc5895..fe9b08f0fb57 100644 --- a/app-text/libexttextcat/Manifest +++ b/app-text/libexttextcat/Manifest @@ -1 +1,2 @@ DIST libexttextcat-3.4.4.tar.xz 1025376 SHA256 f24c086cf3523424228ed58b9f678cc7647688822e5407d5fbc155fbfc846293 SHA512 f1f7a4292199cb6102cc56a5338b19049664ea664adc96a67a71205fe33d6a40f68b8695825fe253427575347ab6230dce5e0b703635534f32a0f70ff001eeed WHIRLPOOL 00413e249aab03720bc237f72497441586c49a24bfdc23100adce0b76585602d44f84393b90eade07eeb6c7083eb4ba5ff9f5f439148880ad7599d2db2b080e2 +DIST libexttextcat-3.4.5.tar.xz 1041268 SHA256 13fdbc9d4c489a4d0519e51933a1aa21fe3fb9eb7da191b87f7a63e82797dac8 SHA512 f05a9f08c2f2f335d0e483c024321b96fee7424bc1398d4c6acbd9c501f92e22f881bc3d6ec2c0434f9bf4604f3c4b0e880e37d3d0de410eac1a20ea6669baa6 WHIRLPOOL 64c11606ac87af7ca9b1394a098b1a4490f2531db214aa9283625bc118cbc1bf123dd93f6dd94e608bddcc57f9ec522c7dfb641065232dfad7c53ba405299b9e diff --git a/app-text/libexttextcat/libexttextcat-3.4.5.ebuild b/app-text/libexttextcat/libexttextcat-3.4.5.ebuild new file mode 100644 index 000000000000..126ef36d1431 --- /dev/null +++ b/app-text/libexttextcat/libexttextcat-3.4.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Library implementing N-gram-based text categorization" +HOMEPAGE="http://software.wise-guys.nl/libtextcat/" +SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + --disable-werror \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |