blob: 23df52ceaf7c7a4eaf74a7cd3cf25f24a79cb59a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsidplay/libsidplay-1.36.57.ebuild,v 1.16 2007/10/15 14:34:58 corsair Exp $
inherit eutils
IUSE=""
DESCRIPTION="C64 SID player library"
HOMEPAGE="http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/linux.html"
SRC_URI="http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/${P}.tgz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/libsidplay-gcc34.patch
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING DEVELOPER INSTALL
}
|