From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1005666-garchives=archives.gentoo.org@lists.gentoo.org> 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 DC2081382C5 for <garchives@archives.gentoo.org>; Sun, 25 Feb 2018 16:00:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7B8AE086B; Sun, 25 Feb 2018 16:00:20 +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 C32CFE086B for <gentoo-commits@lists.gentoo.org>; Sun, 25 Feb 2018 16:00:20 +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 8DACA335C3E for <gentoo-commits@lists.gentoo.org>; Sun, 25 Feb 2018 16:00:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAE21231 for <gentoo-commits@lists.gentoo.org>; Sun, 25 Feb 2018 16:00:17 +0000 (UTC) From: "Pacho Ramos" <pacho@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" <pacho@gentoo.org> Message-ID: <1519573181.a1fcd3a1ae20db492324d86136b4b0ed581ee6f3.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/blib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/blib/blib-1.1.7-r1.ebuild X-VCS-Directories: media-libs/blib/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: a1fcd3a1ae20db492324d86136b4b0ed581ee6f3 X-VCS-Branch: master Date: Sun, 25 Feb 2018 16:00:17 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b917c62a-0d26-420c-ba70-7044d8ed32c4 X-Archives-Hash: eeaa3f448f5e8671bf2d3aa8ff59cd1f commit: a1fcd3a1ae20db492324d86136b4b0ed581ee6f3 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Sun Feb 25 15:39:41 2018 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sun Feb 25 15:39:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1fcd3a1 media-libs/blib: Drop old Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/blib/blib-1.1.7-r1.ebuild | 41 ------------------------------------ 1 file changed, 41 deletions(-) diff --git a/media-libs/blib/blib-1.1.7-r1.ebuild b/media-libs/blib/blib-1.1.7-r1.ebuild deleted file mode 100644 index 22a1dc1b36d..00000000000 --- a/media-libs/blib/blib-1.1.7-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 - -DESCRIPTION="blib is a library full of useful things to hack the Blinkenlights" -HOMEPAGE="http://www.blinkenlights.de" -SRC_URI="http://www.blinkenlights.de/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="aalib gtk directfb" - -RDEPEND=">=dev-libs/glib-2 - aalib? ( >=media-libs/aalib-1.4_rc4-r2 ) - directfb? ( >=dev-libs/DirectFB-0.9.20-r1 ) - gtk? ( >=x11-libs/gtk+-2.4.4:2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - # Drop DEPRECATED flags, bug #391105 - sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \ - blib/Makefile.am blib/Makefile.in \ - gfx/Makefile.am gfx/Makefile.in \ - modules/Makefile.am modules/Makefile.in \ - test/modules/Makefile.am test/modules/Makefile.in || die -} - -src_configure() { - econf \ - $(use_enable aalib) \ - $(use_enable directfb) \ - $(use_enable gtk gtk2) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README -}