mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-26 08:22:40 +01:00
34 lines
721 B
Bash
34 lines
721 B
Bash
# 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}
|
|
}
|