diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-07-13 21:30:38 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-07-13 22:55:10 +0200 |
commit | 0532ca009b6806242f9115df4fd4b9de2ef8f4a9 (patch) | |
tree | 2e17f0e43c95ce09fda015d72833fff3c1b9266e | |
parent | media-sound/rplay: migrate to GLEP 81 (diff) | |
download | gentoo-0532ca009b6806242f9115df4fd4b9de2ef8f4a9.tar.gz gentoo-0532ca009b6806242f9115df4fd4b9de2ef8f4a9.tar.bz2 gentoo-0532ca009b6806242f9115df4fd4b9de2ef8f4a9.zip |
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 <conikost@gentoo.org>
-rw-r--r-- | media-sound/rplay/rplay-3.3.2-r3.ebuild | 56 |
1 files changed, 0 insertions, 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 b0daba33d9a6..000000000000 --- 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 -} |