From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 67AFF1384B4 for ; Sat, 28 Nov 2015 18:59:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0C0321C118; Sat, 28 Nov 2015 18:59:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7AC4121C118 for ; Sat, 28 Nov 2015 18:59:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99EF13408C7 for ; Sat, 28 Nov 2015 18:59:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1066A43 for ; Sat, 28 Nov 2015 18:59: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: <1448735045.25480697060597369927ecd9794bccd55a87e5c1.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/calculix-ccx/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/calculix-ccx/calculix-ccx-2.7-r1.ebuild X-VCS-Directories: sci-libs/calculix-ccx/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 25480697060597369927ecd9794bccd55a87e5c1 X-VCS-Branch: master Date: Sat, 28 Nov 2015 18:59: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: c3d43964-d1f8-4ca9-aca7-2e649b6913a5 X-Archives-Hash: e4d69a990b11ee9caec3ce635fffb9ac commit: 25480697060597369927ecd9794bccd55a87e5c1 Author: Justin Lecher gentoo org> AuthorDate: Sat Nov 28 18:24:05 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Nov 28 18:24:05 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=25480697 sci-libs/calculix-ccx: Drop old GitHub: resolves gentoo-science/sci#420 Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher gentoo.org> sci-libs/calculix-ccx/calculix-ccx-2.7-r1.ebuild | 71 ------------------------ 1 file changed, 71 deletions(-) diff --git a/sci-libs/calculix-ccx/calculix-ccx-2.7-r1.ebuild b/sci-libs/calculix-ccx/calculix-ccx-2.7-r1.ebuild deleted file mode 100644 index e296ebd..0000000 --- a/sci-libs/calculix-ccx/calculix-ccx-2.7-r1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils toolchain-funcs flag-o-matic - -MY_P=ccx_${PV} - -DESCRIPTION="A Free Software Three-Dimensional Structural Finite Element Program" -HOMEPAGE="http://www.calculix.de/" -SRC_URI=" - http://www.dhondt.de/${MY_P}.src.tar.bz2 - doc? ( http://www.dhondt.de/${MY_P}.ps.tar.bz2 ) - examples? ( http://www.dhondt.de/${MY_P}.test.tar.bz2 )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="arpack doc examples threads" - -RDEPEND=" - arpack? ( >=sci-libs/arpack-3.1.3 ) - >=sci-libs/spooles-2.2[threads=] - virtual/lapack - virtual/blas" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-text/ghostscript-gpl )" - -S=${WORKDIR}/CalculiX/${MY_P}/src - -src_prepare() { - epatch "${FILESDIR}"/01_${MY_P}_Makefile_custom_cc_flags_spooles_arpack.patch - epatch "${FILESDIR}"/01_${MY_P}_lapack.patch -} - -src_configure() { - # Technically we currently only need this when arpack is not used. - # Keeping things this way in case we change pkgconfig for arpack - export LAPACK=$($(tc-getPKG_CONFIG) --libs lapack) - - append-cflags "-I/usr/include/spooles -DSPOOLES" - if use threads; then - append-cflags "-DUSE_MT" - fi - - if use arpack; then - export ARPACKLIB=$($(tc-getPKG_CONFIG) --libs arpack) - append-cflags "-DARPACK" - fi - export CC="$(tc-getCC)" - export FC="$(tc-getFC)" -} - -src_install () { - dobin ${MY_P} - dosym ${MY_P} /usr/bin/ccx - - if use doc; then - cd "${S}/../doc" || die - ps2pdf ${MY_P}.ps ${MY_P}.pdf - dodoc ${MY_P}.pdf - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r "${S}"/../test/* - fi -}