blob: d048d4d3c5f93cb90f6cc09bd45a6987176c8871 (
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
40
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-arts/xmms-arts-0.4-r6.ebuild,v 1.6 2003/01/28 12:54:44 seemant Exp $
inherit kde-base eutils
# Note: we set many vars e.g. DEPEND insteaed of extending them because this isn't a proper KDE app,
# it only links against arts. So we need set-kdedir, but almost nothing else. So make sure it continues
# to override e.g. src_install.
MY_P=${PN/-/}-${PV}
DESCRIPTION="This output plugin allows xmms to work with arts, KDE's sound system"
SRC_URI="http://stukach.com/hosted/m.i.a/xmmsarts/${MY_P}.tar.gz"
HOMEPAGE="http://www.xmms.org/plugins_output.html"
LICENSE="GPL-2"
KEYWORDS="~x86 -ppc"
newdepend ">=media-sound/xmms-1.2.5-r1
kde-base/arts"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN/-/}-${PV}-nocmallocc.patch
epatch ${FILESDIR}/${P}-gentoo2.patch
#epatch ${FILESDIR}/${P}-gentoo-endian.patch
}
src_compile() {
kde_src_compile myconf # calls set-kdedir
econf || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING NEWS README
}
|