blob: c46cabe89658327058087c3e6cc70889531da695 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-liveice/xmms-liveice-1.0.0.ebuild,v 1.11 2005/09/14 06:11:57 agriffis Exp $
IUSE=""
inherit gnuconfig
MY_P=LiveIce-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Stream your XMMS playlist to Shout/Icecast server"
HOMEPAGE="http://star.arm.ac.uk/~spm/software/liveice.html"
SRC_URI="http://star.arm.ac.uk/~spm/software/liveice-xmms.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ppc sparc x86"
DEPEND="media-sound/xmms" # there is no need for the icecast on the localhost
# see #81132
src_unpack() {
unpack ${A}
gnuconfig_update
}
src_compile() {
econf || die
make CXXFLAGS="${CXXFLAGS}" || die
}
src_install() {
make DESTDIR=${D} install || die
}
|