Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/liveice/
Date: Mon, 08 Oct 2018 11:36:21
Message-Id: 1538998527.75e54be8d917a272d481589bf411fca63f7d8bf1.zlogene@gentoo
1 commit: 75e54be8d917a272d481589bf411fca63f7d8bf1
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 8 11:35:27 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 8 11:35:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75e54be8
7
8 net-misc/liveice: revbump: EAPI=7
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 net-misc/liveice/liveice-2000530-r2.ebuild | 37 ++++++++++++++++++++++++++++++
14 1 file changed, 37 insertions(+)
15
16 diff --git a/net-misc/liveice/liveice-2000530-r2.ebuild b/net-misc/liveice/liveice-2000530-r2.ebuild
17 new file mode 100644
18 index 00000000000..5efefe357e3
19 --- /dev/null
20 +++ b/net-misc/liveice/liveice-2000530-r2.ebuild
21 @@ -0,0 +1,37 @@
22 +# Copyright 1999-2018 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Live Source Client For IceCast"
30 +HOMEPAGE="http://star.arm.ac.uk/~spm/software/liveice.html"
31 +SRC_URI="http://star.arm.ac.uk/~spm/software/liveice.tar.gz"
32 +
33 +LICENSE="GPL-2+"
34 +SLOT="0"
35 +KEYWORDS="~amd64 x86"
36 +
37 +RDEPEND="media-sound/lame
38 + media-sound/mpg123"
39 +DEPEND=""
40 +
41 +S=${WORKDIR}/${PN}
42 +
43 +src_prepare() {
44 + default
45 + # cannot use LDFLAGS directly as the Makefile uses it for LIBS
46 + sed -i Makefile.in \
47 + -e 's|-o liveice|$(LLFLAGS) &|' \
48 + || die "sed Makefile.in"
49 + tc-export CC
50 +}
51 +
52 +src_compile() {
53 + emake LLFLAGS="${LDFLAGS}"
54 +}
55 +src_install() {
56 + dobin liveice
57 + dodoc liveice.cfg README.liveice README.quickstart README_new_mixer.txt Changes.txt
58 +}