blob: f76509a8e0b8c9dc6eec65ce766739cc9769b610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: current version of ebuild http://atrey.karlin.mff.cuni.cz/~sanda/mac/$
IUSE=""
DESCRIPTION="Plugin to listen WavPack (wv) files using xmms"
HOMEPAGE="http://www.wavpack.com"
SRC_URI="http://www.wavpack.com/${P}.tar.bz2"
SLOT="0"
KEYWORDS="x86 amd64"
LICENSE="GPL"
DEPEND="media-sound/xmms >=media-sound/wavpack-4.40"
src_install() {
exeinto `xmms-config --input-plugin-dir`
doexe src/.libs/libwavpack.so || die
}
|