blob: 89bfcb4032295213704c6d7d0169c10bdbd0fea1 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsidplay/libsidplay-2.1.0.20021111.ebuild,v 1.1 2002/11/11 18:27:40 hanno Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="C64 SID player library"
HOMEPAGE="http://sidplay2.sourceforge.net/"
SRC_URI="http://www-ti.informatik.uni-tuebingen.de/~bwurst/${P}.tar.bz2"
IUSE=""
SLOT="2"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="virtual/glibc"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS INSTALL
}
|