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 D3EB61395E2 for ; Sat, 5 Nov 2016 21:01:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D194CE0A69; Sat, 5 Nov 2016 21:01:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B75F9E0A86 for ; Sat, 5 Nov 2016 21:01:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68C153415B7 for ; Sat, 5 Nov 2016 21:00:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A59342EE for ; Sat, 5 Nov 2016 21:00:57 +0000 (UTC) From: "Andreas Hüttel" 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 Hüttel" Message-ID: <1478379647.c1f829a80d07781cfe5088ebb2534ab211af0991.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libwps/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libwps/libwps-0.4.4-r1.ebuild X-VCS-Directories: app-text/libwps/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: c1f829a80d07781cfe5088ebb2534ab211af0991 X-VCS-Branch: master Date: Sat, 5 Nov 2016 21:00:57 +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: e5fb2ebd-3e6d-45a1-ba34-74aefbeb46e7 X-Archives-Hash: 60141f05037ea052dd2f3500a51d8030 commit: c1f829a80d07781cfe5088ebb2534ab211af0991 Author: Andreas Sturmlechner gmail com> AuthorDate: Sat Oct 22 08:49:18 2016 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sat Nov 5 21:00:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1f829a8 app-text/libwps: Switch 0.4.4 to --with-sharedptr=c++11 Drop boost dependency. Package-Manager: portage-2.3.0 app-text/libwps/libwps-0.4.4-r1.ebuild | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/app-text/libwps/libwps-0.4.4-r1.ebuild b/app-text/libwps/libwps-0.4.4-r1.ebuild new file mode 100644 index 00000000..4ac63db --- /dev/null +++ b/app-text/libwps/libwps-0.4.4-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils + +DESCRIPTION="Microsoft Works file word processor format import filter library" +HOMEPAGE="http://libwps.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + +LICENSE="|| ( LGPL-2.1 MPL-2.0 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~x86" +IUSE="doc debug static-libs" + +RDEPEND=" + app-text/libwpd:0.10 + dev-libs/librevenge +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +src_configure() { + econf \ + --disable-werror \ + --with-sharedptr=c++11 \ + $(use_enable debug) \ + $(use_with doc docs) \ + $(use_enable static-libs static) +} + +src_install() { + default + prune_libtool_files --all +}