blob: affd517f41411fa7570c74f89ad7cc747a0c2e36 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/libsidutils/libsidutils-1.0.2.20021111.ebuild,v 1.3 2003/02/13 13:15:03 vapier Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="C64 SID player utilities"
HOMEPAGE="http://sidplay2.sourceforge.net/"
SRC_URI="http://www-ti.informatik.uni-tuebingen.de/~bwurst/${P}.tar.bz2"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="virtual/glibc
>=media-libs/libsidplay-2.0.8"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS INSTALL
}
|