blob: 08c63cafaab9f2ce741f605b61cc0b4916ea4d78 (
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
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-wma/xmms-wma-1.0.5.ebuild,v 1.1 2005/10/24 00:46:58 metalgod Exp $
IUSE=""
inherit eutils toolchain-funcs
DESCRIPTION="XMMS plugin to play wma"
HOMEPAGE="http://mcmcc.bat.ru/xmms-wma/"
SRC_URI="http://mcmcc.bat.ru/xmms-wma/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
#~sparc: 1.0.4: Plays a little staticy, x86/adm64 is clear...
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
DEPEND="media-sound/xmms
>=media-video/ffmpeg-0.4.9_p20081014"
src_unpack() {
unpack ${A}
cd ${S}
epatch "${FILESDIR}"/${PN}-ds-ffmpeg0.10.patch || die
}
src_compile () {
emake CC="$(tc-getCC)" || die
}
src_install () {
exeinto `xmms-config --input-plugin-dir`
doexe libwma.so
}
|