Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/
Date: Wed, 28 Nov 2018 00:07:06
Message-Id: 1543363609.568d49bf818fc0ec25e4ede85b452fe4d3ca99fa.bman@gentoo
1 commit: 568d49bf818fc0ec25e4ede85b452fe4d3ca99fa
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 28 00:06:49 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 28 00:06:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568d49bf
7
8 sci-electronics/puff: drop old EAPI2
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 sci-electronics/puff/puff-20100127.ebuild | 48 -------------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/sci-electronics/puff/puff-20100127.ebuild b/sci-electronics/puff/puff-20100127.ebuild
16 deleted file mode 100644
17 index f2696a3996d..00000000000
18 --- a/sci-electronics/puff/puff-20100127.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit flag-o-matic multilib
27 -
28 -DESCRIPTION="microwave CAD software"
29 -HOMEPAGE="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/puff/"
30 -SRC_URI="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/${PN}/${P}.tgz"
31 -
32 -LICENSE="GPL-3"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -IUSE=""
36 -
37 -RDEPEND="x11-libs/libX11"
38 -DEPEND="${RDEPEND}
39 - dev-lang/fpc
40 - amd64? ( >=dev-lang/fpc-2.4.0 )"
41 -
42 -src_prepare() {
43 - # fix lib path for X11 and dont ignore LDFLAGS
44 - sed -i -e "s#lib\\\/#$(get_libdir)\\\/#" \
45 - -e 's/CFLAGS/#CFLAGS/' \
46 - -e 's/link.res pu/link.res $(LDFLAGS) pu/' Makefile || die
47 -}
48 -
49 -src_compile() {
50 - LDFLAGS="$(raw-ldflags)"
51 - emake -j1 || die
52 -}
53 -
54 -src_install() {
55 - dobin puff || die
56 -
57 - dodoc changelog.txt README.txt || die
58 - newdoc "Puff Manual.pdf" Puff_Manual.pdf || die
59 -
60 - insinto /usr/share/${PN}
61 - doins setup.puf || die
62 - doins -r orig_dev_and_puf_files || die
63 -}
64 -
65 -pkg_postinst() {
66 - elog "You must copy /usr/share/${PN}/setup.puf into your working directory"
67 - elog "before using the program."
68 -}