blob: 642cf43a185ea73828a02fd4614051e0e6229c09 (
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
35
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.4 2004/06/18 05:24:41 eradicator Exp $
IUSE=""
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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~amd64"
S=${WORKDIR}/null_output-${PV}
DOCS="AUTHORS ChangeLog NEWS"
src_unpack() {
unpack ${A}
cd ${S}
use amd64 && gnuconfig_update
}
src_install () {
make DESTDIR=${D} install || die
dodoc ${DOCS}
}
|