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 6981C138334 for ; Wed, 28 Nov 2018 00:07:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B8A0E08BE; Wed, 28 Nov 2018 00:07:03 +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 EBD12E08BE for ; Wed, 28 Nov 2018 00:07:01 +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 09F1E335C5A for ; Wed, 28 Nov 2018 00:07:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 304F544B for ; Wed, 28 Nov 2018 00:06:58 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1543363609.568d49bf818fc0ec25e4ede85b452fe4d3ca99fa.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/puff/puff-20100127.ebuild X-VCS-Directories: sci-electronics/puff/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 568d49bf818fc0ec25e4ede85b452fe4d3ca99fa X-VCS-Branch: master Date: Wed, 28 Nov 2018 00:06:58 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 50641686-46fa-412b-98af-3cb1c7a4e513 X-Archives-Hash: 0d8c660ecc07feaf3698ac67995ea168 commit: 568d49bf818fc0ec25e4ede85b452fe4d3ca99fa Author: Aaron Bauman gentoo org> AuthorDate: Wed Nov 28 00:06:49 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Nov 28 00:06:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568d49bf sci-electronics/puff: drop old EAPI2 Signed-off-by: Aaron Bauman gentoo.org> sci-electronics/puff/puff-20100127.ebuild | 48 ------------------------------- 1 file changed, 48 deletions(-) diff --git a/sci-electronics/puff/puff-20100127.ebuild b/sci-electronics/puff/puff-20100127.ebuild deleted file mode 100644 index f2696a3996d..00000000000 --- a/sci-electronics/puff/puff-20100127.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit flag-o-matic multilib - -DESCRIPTION="microwave CAD software" -HOMEPAGE="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/puff/" -SRC_URI="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/${PN}/${P}.tgz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/libX11" -DEPEND="${RDEPEND} - dev-lang/fpc - amd64? ( >=dev-lang/fpc-2.4.0 )" - -src_prepare() { - # fix lib path for X11 and dont ignore LDFLAGS - sed -i -e "s#lib\\\/#$(get_libdir)\\\/#" \ - -e 's/CFLAGS/#CFLAGS/' \ - -e 's/link.res pu/link.res $(LDFLAGS) pu/' Makefile || die -} - -src_compile() { - LDFLAGS="$(raw-ldflags)" - emake -j1 || die -} - -src_install() { - dobin puff || die - - dodoc changelog.txt README.txt || die - newdoc "Puff Manual.pdf" Puff_Manual.pdf || die - - insinto /usr/share/${PN} - doins setup.puf || die - doins -r orig_dev_and_puf_files || die -} - -pkg_postinst() { - elog "You must copy /usr/share/${PN}/setup.puf into your working directory" - elog "before using the program." -}