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 E907513933E for ; Tue, 13 Jul 2021 20:57:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58A27E0DD6; Tue, 13 Jul 2021 20:57:35 +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 3B84FE0DD6 for ; Tue, 13 Jul 2021 20:57:35 +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 2631F342D1D for ; Tue, 13 Jul 2021 20:57:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 521517E3 for ; Tue, 13 Jul 2021 20:57:30 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626209710.0532ca009b6806242f9115df4fd4b9de2ef8f4a9.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/rplay/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/rplay/rplay-3.3.2-r3.ebuild X-VCS-Directories: media-sound/rplay/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 0532ca009b6806242f9115df4fd4b9de2ef8f4a9 X-VCS-Branch: master Date: Tue, 13 Jul 2021 20:57:30 +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: 6cab1a45-2d79-4fb6-9d95-f7e857bad978 X-Archives-Hash: 373c9abb0ac2147751f84e7f050386a4 commit: 0532ca009b6806242f9115df4fd4b9de2ef8f4a9 Author: Conrad Kostecki gentoo org> AuthorDate: Tue Jul 13 19:30:38 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Jul 13 20:55:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0532ca00 media-sound/rplay: drop old version Closes: https://bugs.gentoo.org/781335 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> media-sound/rplay/rplay-3.3.2-r3.ebuild | 56 --------------------------------- 1 file changed, 56 deletions(-) diff --git a/media-sound/rplay/rplay-3.3.2-r3.ebuild b/media-sound/rplay/rplay-3.3.2-r3.ebuild deleted file mode 100644 index b0daba33d9a..00000000000 --- a/media-sound/rplay/rplay-3.3.2-r3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools user - -DESCRIPTION="Play sounds on remote Unix systems without data transfer" -HOMEPAGE="http://rplay.doit.org/" -SRC_URI="http://rplay.doit.org/dist/${P}.tar.gz - mirror://debian/pool/main/r/${PN}/${PN}_${PV}-16.debian.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86" -IUSE="" - -RDEPEND="media-sound/gsm" -DEPEND="${RDEPEND}" - -PATCHES=( - "${WORKDIR}/debian/patches" - "${FILESDIR}/${P}-built-in_function_exit-r1.patch" -) - -pkg_setup() { - enewgroup rplayd "" - enewuser rplayd "" "" "" rplayd -} - -src_prepare() { - default - mv configure.{in,ac} || die - mv rx/configure.{in,ac} || die - eautoreconf -} - -src_configure() { - econf \ - --enable-rplayd-user=rplayd \ - --enable-rplayd-group=rplayd -} - -src_install() { - # This is borrowed from the old einstall helper, and is necessary - # (at least some of variables). - emake prefix="${ED}/usr" \ - libdir="${ED}/usr/$(get_libdir)" \ - datadir="${ED}/usr/share" \ - infodir="${ED}/usr/share/info" \ - localstatedir="${ED}/var/lib" \ - mandir="${ED}/usr/share/man" \ - sysconfdir="${ED}/etc" \ - install - - find "${ED}" -name '*.la' -delete || die -}