Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/daudio/
Date: Mon, 13 Feb 2017 08:04:02
Message-Id: 1486973013.76b7948da238491991b57c4f868daf201ef1fa6c.kensington@gentoo
1 commit: 76b7948da238491991b57c4f868daf201ef1fa6c
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 13 08:01:35 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 13 08:03:33 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76b7948d
7
8 media-sound/daudio: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 media-sound/daudio/daudio-0.3.ebuild | 37 ------------------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/media-sound/daudio/daudio-0.3.ebuild b/media-sound/daudio/daudio-0.3.ebuild
16 deleted file mode 100644
17 index 80f2168bbf..0000000000
18 --- a/media-sound/daudio/daudio-0.3.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2009 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -inherit eutils toolchain-funcs
26 -
27 -DESCRIPTION="Distributed audio on the local network"
28 -HOMEPAGE="http://daudio.sourceforge.net/"
29 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -#-sparc: 0.3: static audio on local daemon. No audio when client connects to amd64 daemon
34 -KEYWORDS="amd64 ~ppc -sparc x86"
35 -
36 -IUSE=""
37 -DEPEND=">=media-libs/libmad-0.15.0b-r1"
38 -
39 -src_unpack() {
40 - unpack ${A}
41 - cd "${S}"
42 -
43 - epatch "${FILESDIR}/${P}-makefile.patch"
44 -}
45 -
46 -src_compile() {
47 - tc-export CC
48 - emake -C client || die "emake failed"
49 - emake -C server || die "emake failed"
50 - emake -C streamer || die "emake failed"
51 -}
52 -
53 -src_install() {
54 - dobin client/daudioc server/daudiod streamer/dstreamer
55 - newinitd "${FILESDIR}"/daudio.rc daudio
56 - dodoc doc/*
57 -}