Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/ibp/
Date: Sun, 25 Feb 2018 18:38:34
Message-Id: 1519583891.ca7920238f41ee8bf1c0029e65ba6b398bbb7adb.tomjbe@gentoo
1 commit: ca7920238f41ee8bf1c0029e65ba6b398bbb7adb
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 25 18:38:11 2018 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 25 18:38:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca792023
7
8 media-radio/ibp: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 media-radio/ibp/ibp-0.21.ebuild | 46 -----------------------------------------
13 1 file changed, 46 deletions(-)
14
15 diff --git a/media-radio/ibp/ibp-0.21.ebuild b/media-radio/ibp/ibp-0.21.ebuild
16 deleted file mode 100644
17 index 9777e82215b..00000000000
18 --- a/media-radio/ibp/ibp-0.21.ebuild
19 +++ /dev/null
20 @@ -1,46 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="4"
25 -inherit eutils toolchain-funcs
26 -
27 -DESCRIPTION="Shows currently transmitting beacons of the International Beacon Project (IBP)"
28 -HOMEPAGE="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/${PN}.html"
29 -SRC_URI="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/${P}.tgz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="amd64 x86"
34 -IUSE="X"
35 -
36 -RDEPEND="sys-libs/ncurses
37 - X? ( x11-libs/libX11 )"
38 -DEPEND="${RDEPEND}
39 - X? ( x11-misc/imake )"
40 -
41 -src_prepare() {
42 - # respect CFLAGS if built without USE=X
43 - sed -i -e "s/= -D/+= -D/" Makefile || die
44 -}
45 -
46 -src_configure() {
47 - if use X ;then
48 - xmkmf || die
49 - fi
50 -}
51 -
52 -src_compile() {
53 - if use X ; then
54 - emake \
55 - CC="$(tc-getCC)" \
56 - LOCAL_LDFLAGS="${LDFLAGS}" \
57 - CDEBUGFLAGS="${CFLAGS}"
58 - else
59 - emake CC="$(tc-getCC)"
60 - fi
61 -}
62 -
63 -src_install() {
64 - dobin ${PN}
65 - doman ${PN}.1
66 -}