blob: c8364668c1d1aebea850cbc5ec5aaeb75249702d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-null/xmms-null-0.3.ebuild,v 1.11 2006/05/23 19:46:37 corsair Exp $
inherit gnuconfig
MY_P="null_output-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="A null output plugin for xmms"
SRC_URI="http://havardk.xmms.org/plugins/null_output/${MY_P}.tar.gz"
HOMEPAGE="http://havardk.xmms.org/plugins/null_output"
DEPEND="media-sound/xmms"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc ppc64 sparc x86"
DOCS="AUTHORS ChangeLog NEWS"
src_unpack() {
unpack ${A}
cd ${S}
gnuconfig_update
}
src_install () {
make DESTDIR=${D} install || die
dodoc ${DOCS}
}
|