summaryrefslogtreecommitdiff
blob: 78e602dcadd65b7968537bf53ec5c417991825a4 (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
36
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-nas/xmms-nas-0.2-r1.ebuild,v 1.16 2005/04/24 03:00:51 hansmi Exp $

IUSE=""

inherit gnuconfig

DESCRIPTION="A xmms plugin for NAS"
SRC_URI="ftp://mud.stack.nl/pub/OuterSpace/willem/${P}.tar.gz"
HOMEPAGE="http://www.xmms.org/plugins_input.html"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc -sparc x86"

DEPEND="media-sound/xmms
	media-libs/nas"

src_unpack() {
	unpack ${A}
	cd ${S}
	gnuconfig_update
}

src_compile() {
	econf --disable-static || die
	touch config.h
	make || die
}

src_install () {
	exeinto `xmms-config --input-plugin-dir`
	doexe .libs/libnas.so || die
	dodoc AUTHORS ChangeLog NEWS README TODO
}