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 1FD1F1395E3 for ; Sun, 13 Nov 2016 21:49:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 332BF21C073; Sun, 13 Nov 2016 21:49:41 +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 103F921C028 for ; Sun, 13 Nov 2016 21:49:41 +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 3AB9E34168E for ; Sun, 13 Nov 2016 21:49:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A664C24BC for ; Sun, 13 Nov 2016 21:49:38 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1479073719.a2b13e11f194a23e55919ebf3c2d7b3b54d0a74e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/xfoil/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/xfoil/xfoil-6.97.ebuild X-VCS-Directories: sci-physics/xfoil/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a2b13e11f194a23e55919ebf3c2d7b3b54d0a74e X-VCS-Branch: master Date: Sun, 13 Nov 2016 21:49:38 +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: e905c979-40d9-4826-8a53-4aa5dfde6aaf X-Archives-Hash: 652ff4cc11f0403b5322e9ad7739060d commit: a2b13e11f194a23e55919ebf3c2d7b3b54d0a74e Author: Gerhard Bräunlich gmx net> AuthorDate: Sat Nov 12 15:45:05 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Nov 13 21:48:39 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2b13e11 sci-physics/xfoil: Removing EAPI version 6.97 Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/2826 Signed-off-by: David Seifert gentoo.org> sci-physics/xfoil/xfoil-6.97.ebuild | 71 ------------------------------------- 1 file changed, 71 deletions(-) diff --git a/sci-physics/xfoil/xfoil-6.97.ebuild b/sci-physics/xfoil/xfoil-6.97.ebuild deleted file mode 100644 index d1679ff..00000000 --- a/sci-physics/xfoil/xfoil-6.97.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils fortran-2 - -DESCRIPTION="Design and analysis of subsonic isolated airfoils" -HOMEPAGE="http://raphael.mit.edu/xfoil/" -SRC_URI=" - http://web.mit.edu/drela/Public/web/${PN}/${PN}${PV}.tar.gz - doc? ( http://web.mit.edu/drela/Public/web/${PN}/dataflow.pdf )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples" - -RDEPEND="x11-libs/libX11" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/Xfoil" - -src_prepare() { - sed \ - -e '/^FC/d' \ - -e '/^CC/d' \ - -e '/^FFLAGS/d' \ - -e '/^CFLAGS/d' \ - -e 's/^\(FFLOPT .*\)/FFLOPT = $(FFLAGS)/g' \ - -i {bin,plotlib,orrs/bin}/Makefile plotlib/config.make \ - || die "sed for flags and compilers failed" - - # fix bug #147033 - [[ $(tc-getFC) == *gfortran ]] && \ - epatch "${FILESDIR}"/${PN}-6.96-gfortran.patch - - epatch "${FILESDIR}"/${P}-overflow.patch - - sed \ - -e "s:/var/local/codes/orrs/osmap.dat:${EPREFIX}/usr/share/xfoil/orrs/osmap.dat:" \ - -i orrs/src/osmap.f || die "sed osmap.f failed" -} - -src_compile() { - cd "${S}"/orrs/bin - emake FLG="${FFLAGS}" FTNLIB="${LDFLAGS}" OS - cd "${S}"/orrs - bin/osgen osmaps_ns.lst - cd "${S}"/plotlib - emake CFLAGS="${CFLAGS} -DUNDERSCORE" - cd "${S}"/bin - for i in xfoil pplot pxplot; do - emake \ - PLTOBJ="../plotlib/libPlt.a" \ - CFLAGS="${CFLAGS} -DUNDERSCORE" \ - FTNLIB="${LDFLAGS}" \ - ${i} - done -} - -src_install() { - dobin bin/pplot bin/pxplot bin/xfoil - insinto /usr/share/xfoil/orrs - doins orrs/osm*.dat - dodoc *.txt README - insinto /usr/share/doc/${PF}/ - use examples && doins -r runs - use doc && dodoc "${DISTDIR}"/dataflow.pdf -}