blob: 1243da1db49487ded5a69b07f30f24f1df02e78e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmodplug/libmodplug-0.7.ebuild,v 1.6 2005/03/13 15:01:52 luckyduck Exp $
inherit eutils
IUSE=""
DESCRIPTION="Library for playing MOD-like music files"
SRC_URI="mirror://sourceforge/modplug-xmms/${P}.tar.gz"
HOMEPAGE="http://modplug-xmms.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
#-sparc: 1.0 - Bus Error on play
KEYWORDS="amd64 -sparc x86 ~ppc"
RDEPEND=""
DEPEND="dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd ${S}/src/libmodplug
epatch ${FILESDIR}/${P}-amd64.patch
}
src_install () {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README TODO
}
|