mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-01-05 21:34:14 +01:00
37 lines
778 B
Bash
37 lines
778 B
Bash
# 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
|
|
}
|