blob: e8503758e338546235388f41e3275373e361bdb1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sidplay/sidplay-2.0.9.ebuild,v 1.4 2006/02/15 13:32:35 flameeyes Exp $
IUSE=""
DESCRIPTION="C64 SID player"
HOMEPAGE="http://sidplay2.sourceforge.net/"
SRC_URI="mirror://sourceforge/sidplay2/${P}.tar.gz"
RESTRICT="nomirror"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc amd64"
RDEPEND=">=media-libs/libsidplay-2.1.0"
DEPEND="${DEPEND}
dev-util/pkgconfig"
src_install () {
make DESTDIR=${D} install || die
dodoc TODO AUTHORS ChangeLog
}
|