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 2FD1F139087 for ; Sun, 22 Jan 2017 10:21:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 625C5224203; Sun, 22 Jan 2017 10:21:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3F4FF224203 for ; Sun, 22 Jan 2017 10:21:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E25CB340F53 for ; Sun, 22 Jan 2017 10:21:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86A342C5B for ; Sun, 22 Jan 2017 10:21:15 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1485080473.899170263f29d4bcc0f6e8e8a79ae3808c064c48.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/suitesparseconfig/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/suitesparseconfig/suitesparseconfig-4.2.1-r1.ebuild X-VCS-Directories: sci-libs/suitesparseconfig/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 899170263f29d4bcc0f6e8e8a79ae3808c064c48 X-VCS-Branch: master Date: Sun, 22 Jan 2017 10:21:15 +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: 1ce93ef5-47d6-4dfb-9ae2-da7869766ab7 X-Archives-Hash: 7fc4d9407259077dcae6a27ef706d51f commit: 899170263f29d4bcc0f6e8e8a79ae3808c064c48 Author: Justin Lecher gentoo org> AuthorDate: Sun Jan 22 10:08:20 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Jan 22 10:21:13 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89917026 sci-libs/suitesparseconfig: Add 32bit support Package-Manager: Portage-2.3.3, Repoman-2.3.1 Signed-off-by: Justin Lecher gentoo.org> .../suitesparseconfig-4.2.1-r1.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/sci-libs/suitesparseconfig/suitesparseconfig-4.2.1-r1.ebuild b/sci-libs/suitesparseconfig/suitesparseconfig-4.2.1-r1.ebuild new file mode 100644 index 00000000..4a79daa --- /dev/null +++ b/sci-libs/suitesparseconfig/suitesparseconfig-4.2.1-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit multilib-minimal + +DESCRIPTION="Common configurations for all packages in suitesparse" +HOMEPAGE="http://www.cise.ufl.edu/research/sparse/SuiteSparse_config" +SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="static-libs" + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + econf \ + $(use_enable static-libs static) +} + +multilib_src_install_all() { + if ! use static-libs; then + find "${ED}" -name "*.la" -delete || die + fi +}