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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9CD6B158086 for ; Thu, 16 Dec 2021 18:15:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4776A2BC040; Thu, 16 Dec 2021 18:15:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E50FC2BC026 for ; Thu, 16 Dec 2021 18:15:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E37B43431DF for ; Thu, 16 Dec 2021 18:15:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C8AA244 for ; Thu, 16 Dec 2021 18:15:14 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1639678461.aa5d32ed9e3ca66ccfc6f64a6443f14461434c48.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/zvbi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/zvbi/zvbi-0.2.35-r1.ebuild X-VCS-Directories: media-libs/zvbi/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: aa5d32ed9e3ca66ccfc6f64a6443f14461434c48 X-VCS-Branch: master Date: Thu, 16 Dec 2021 18:15:14 +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: 66df0037-74ff-45b8-aeba-4fbbc524baab X-Archives-Hash: 0d09df456e223a93d0e42d2272621ac2 commit: aa5d32ed9e3ca66ccfc6f64a6443f14461434c48 Author: Jakov Smolić gentoo org> AuthorDate: Thu Dec 16 18:14:21 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Dec 16 18:14:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa5d32ed media-libs/zvbi: Drop EAPI-5 ebuild Signed-off-by: Jakov Smolić gentoo.org> media-libs/zvbi/zvbi-0.2.35-r1.ebuild | 51 ----------------------------------- 1 file changed, 51 deletions(-) diff --git a/media-libs/zvbi/zvbi-0.2.35-r1.ebuild b/media-libs/zvbi/zvbi-0.2.35-r1.ebuild deleted file mode 100644 index 7fd82de6ab0e..000000000000 --- a/media-libs/zvbi/zvbi-0.2.35-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit epatch libtool multilib-minimal - -DESCRIPTION="VBI Decoding Library for Zapping" -SRC_URI="mirror://sourceforge/zapping/${P}.tar.bz2" -HOMEPAGE="http://zapping.sourceforge.net" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="doc dvb nls static-libs v4l X" - -RDEPEND=">=media-libs/libpng-1.5.18:0=[${MULTILIB_USEDEP}] - >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] - nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] ) - X? ( >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/os-headers - doc? ( app-doc/doxygen ) - nls? ( sys-devel/gettext ) - X? ( x11-libs/libXt )" - -src_prepare() { - epatch "${FILESDIR}/tests-gcc7.patch" - elibtoolize -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable static-libs static) \ - $(use_enable v4l) \ - $(use_enable dvb) \ - $(use_enable nls) \ - $(use_with X x) \ - $(multilib_native_use_with doc doxygen) -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - multilib_is_native_abi && use doc && dohtml -a png,gif,html,css doc/html/* -} - -multilib_src_install_all() { - dodoc AUTHORS BUGS ChangeLog NEWS README TODO - - find "${D}" -name '*.la' -delete -}