blob: ec355e6d4cbb01637a458dc867ff697f41cc0555 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/shell-fm/shell-fm-0.2_p191.ebuild,v 1.4 2007/06/16 14:30:25 dertobi123 Exp $
DESCRIPTION="A lightweight console based player for Last.FM radio streams."
HOMEPAGE="http://nex.scrapping.cc/shell-fm/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ao"
DEPEND="media-libs/libmad
ao? ( media-libs/libao )"
src_compile() {
econf $(use_enable ao) || die 'econf failed'
emake || die 'emake failed'
}
src_install() {
emake DESTDIR="${D}" install || die 'emake install failed'
}
|