blob: 1e887e0d43a7ec3b19c008ba0cfdec2a111d5297 (
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.2 2007/03/23 20:37:32 pioto 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="~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'
}
|