diff options
Diffstat (limited to 'media-sound/sidplay/sidplay-2.0.9.ebuild')
-rw-r--r-- | media-sound/sidplay/sidplay-2.0.9.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/media-sound/sidplay/sidplay-2.0.9.ebuild b/media-sound/sidplay/sidplay-2.0.9.ebuild new file mode 100644 index 000000000000..89f211a778cb --- /dev/null +++ b/media-sound/sidplay/sidplay-2.0.9.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=2 +inherit eutils + +DESCRIPTION="C64 SID player" +HOMEPAGE="http://sidplay2.sourceforge.net/" +SRC_URI="mirror://sourceforge/sidplay2/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 ~hppa ppc ~sparc x86" +IUSE="" + +RDEPEND=">=media-libs/libsidplay-2.1" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gcc43.patch \ + "${FILESDIR}"/${P}-gcc44.patch +} + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc TODO AUTHORS ChangeLog +} |