diff options
author | 2002-08-07 08:24:50 +0000 | |
---|---|---|
committer | 2002-08-07 08:24:50 +0000 | |
commit | f581e82b7db7904418d677aebf33c55f9459fbd0 (patch) | |
tree | 808e0a723ef73ecd09d3ffd8ccda337dd9b6ed95 /media-libs/resid/resid-0.13.ebuild | |
parent | Added support for use var: opengl. Fixes #5025. Submitted by Caleb Shay (diff) | |
download | gentoo-2-f581e82b7db7904418d677aebf33c55f9459fbd0.tar.gz gentoo-2-f581e82b7db7904418d677aebf33c55f9459fbd0.tar.bz2 gentoo-2-f581e82b7db7904418d677aebf33c55f9459fbd0.zip |
New package. Fixes #5567. Contributed by Hanno Boeck
Diffstat (limited to 'media-libs/resid/resid-0.13.ebuild')
-rw-r--r-- | media-libs/resid/resid-0.13.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/media-libs/resid/resid-0.13.ebuild b/media-libs/resid/resid-0.13.ebuild new file mode 100644 index 000000000000..b7c6e21f0472 --- /dev/null +++ b/media-libs/resid/resid-0.13.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/resid/resid-0.13.ebuild,v 1.1 2002/08/07 08:24:50 rphillips Exp $ + +DESCRIPTION="C++ library to emulate the C64 SID chip" +HOMEPAGE="http://sidplay2.sourceforge.net" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/sidplay2/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +DEPEND="" +RDEPEND="${DEPEND}" +S=${WORKDIR}/${P} + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die +} |