blob: d22541916bf475c288f8c9e4778e7bc9ae0dd20d (
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
38
39
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-xmmsmplayer/xmms-xmmsmplayer-0.5-r1.ebuild,v 1.3 2005/09/03 23:13:45 flameeyes Exp $
inherit eutils
IUSE=""
MY_PN="xmmsmplayer"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Xmms-Mplayer is a input plugin for xmms that allows you to play all video files in xmms."
HOMEPAGE="http://xmmsmplayer.sourceforge.net/"
SRC_URI="mirror://sourceforge/xmmsmplayer/${MY_P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="-amd64 ~ppc ~sparc ~x86"
DEPEND="media-sound/xmms
media-video/mplayer"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/exts-filter.patch
}
src_compile() {
econf --libdir=`xmms-config --input-plugin-dir`
emake || die "Compilation failed"
}
src_install() {
make DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS README
}
|