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 0929A1382C5 for ; Sun, 25 Feb 2018 18:38:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09517E0825; Sun, 25 Feb 2018 18:38:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DA419E0825 for ; Sun, 25 Feb 2018 18:38:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1552B335C38 for ; Sun, 25 Feb 2018 18:38:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F56A1E1 for ; Sun, 25 Feb 2018 18:38:29 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1519583891.ca7920238f41ee8bf1c0029e65ba6b398bbb7adb.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/ibp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/ibp/ibp-0.21.ebuild X-VCS-Directories: media-radio/ibp/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: ca7920238f41ee8bf1c0029e65ba6b398bbb7adb X-VCS-Branch: master Date: Sun, 25 Feb 2018 18:38:29 +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: e2aab9a9-039f-45a3-bedd-fdf3000c4650 X-Archives-Hash: 6d08a58d277cb4c727856b899cb9ed16 commit: ca7920238f41ee8bf1c0029e65ba6b398bbb7adb Author: Thomas Beierlein gentoo org> AuthorDate: Sun Feb 25 18:38:11 2018 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Sun Feb 25 18:38:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca792023 media-radio/ibp: Drop old Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-radio/ibp/ibp-0.21.ebuild | 46 ----------------------------------------- 1 file changed, 46 deletions(-) diff --git a/media-radio/ibp/ibp-0.21.ebuild b/media-radio/ibp/ibp-0.21.ebuild deleted file mode 100644 index 9777e82215b..00000000000 --- a/media-radio/ibp/ibp-0.21.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" -inherit eutils toolchain-funcs - -DESCRIPTION="Shows currently transmitting beacons of the International Beacon Project (IBP)" -HOMEPAGE="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/${PN}.html" -SRC_URI="http://wwwhome.cs.utwente.nl/~ptdeboer/ham/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="X" - -RDEPEND="sys-libs/ncurses - X? ( x11-libs/libX11 )" -DEPEND="${RDEPEND} - X? ( x11-misc/imake )" - -src_prepare() { - # respect CFLAGS if built without USE=X - sed -i -e "s/= -D/+= -D/" Makefile || die -} - -src_configure() { - if use X ;then - xmkmf || die - fi -} - -src_compile() { - if use X ; then - emake \ - CC="$(tc-getCC)" \ - LOCAL_LDFLAGS="${LDFLAGS}" \ - CDEBUGFLAGS="${CFLAGS}" - else - emake CC="$(tc-getCC)" - fi -} - -src_install() { - dobin ${PN} - doman ${PN}.1 -}