From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B8A95138330 for ; Sun, 7 Jan 2018 09:55:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE740E08BF; Sun, 7 Jan 2018 09:55:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AA2EDE08BF for ; Sun, 7 Jan 2018 09:55:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5642335DAD for ; Sun, 7 Jan 2018 09:55:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63C891A5 for ; Sun, 7 Jan 2018 09:55:53 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1515318769.f54366ab6f3f6a0e9dad9b103672c3a92c8b0a85.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libabw/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libabw/Manifest app-text/libabw/libabw-0.1.2.ebuild X-VCS-Directories: app-text/libabw/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f54366ab6f3f6a0e9dad9b103672c3a92c8b0a85 X-VCS-Branch: master Date: Sun, 7 Jan 2018 09:55:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a75021b1-3c21-49d6-8960-de45b3777630 X-Archives-Hash: b9065c5683dfbad78d3ce2d0a86dda5a commit: f54366ab6f3f6a0e9dad9b103672c3a92c8b0a85 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 7 09:52:49 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 7 09:52:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f54366ab app-text/libabw: 0.1.2 version bump Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-text/libabw/Manifest | 1 + app-text/libabw/libabw-0.1.2.ebuild | 44 +++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/app-text/libabw/Manifest b/app-text/libabw/Manifest index 959e4f00a7a..24dfe74af61 100644 --- a/app-text/libabw/Manifest +++ b/app-text/libabw/Manifest @@ -1 +1,2 @@ DIST libabw-0.1.1.tar.xz 287628 BLAKE2B c8873512d7bb4c6594330dd35f044a6d6fb7bd07f4b915b5f0d0752ae36c9c6d2c8a5e7e7f66947fb5c27256e0701214b3fe171e1f52c09cfd42bbf106bc689e SHA512 853dd86ecc79e8590d3163e05e145ad66240ae3cf12d206d021775a94bfb33d70aa5acdcdd193ac747baeae1ba0eed18099ea6f4515be23bdd70b431e96c4b1a +DIST libabw-0.1.2.tar.xz 318400 BLAKE2B ba25542da0d6568530241892dbdba72d2b0dcf667b50e0c1a4e656e0facf82bf77ca8eff8db4d6e57ab699f12d8dad511d32aee291541ffe6460b2ee98590b68 SHA512 a365c1aa047a97a86eee6bce8463646bdf248a51013139ee288402a832fd545586e072d7c7fc11a56f42e3637de9e922197be20d0587e53c51fd80ced409a6cd diff --git a/app-text/libabw/libabw-0.1.2.ebuild b/app-text/libabw/libabw-0.1.2.ebuild new file mode 100644 index 00000000000..9db45bfc4cf --- /dev/null +++ b/app-text/libabw/libabw-0.1.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="Library parsing abiword documents" +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libabw" +SRC_URI="https://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="doc static-libs" + +RDEPEND=" + dev-libs/librevenge + dev-libs/libxml2 + sys-libs/zlib +" +DEPEND="${RDEPEND} + >=dev-libs/boost-1.46 + sys-devel/libtool + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --disable-werror \ + $(use_with doc docs) \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}