diff options
author | 2002-07-18 19:09:28 +0000 | |
---|---|---|
committer | 2002-07-18 19:09:28 +0000 | |
commit | 3b0db9d591901eb38026b113d09a99e7fb940a29 (patch) | |
tree | be938d4a01be2a9aa93ff5c5b501b4d6d29c8416 /media-sound | |
parent | C64 SIDPlay library; required by xmms-sid (diff) | |
download | historical-3b0db9d591901eb38026b113d09a99e7fb940a29.tar.gz historical-3b0db9d591901eb38026b113d09a99e7fb940a29.tar.bz2 historical-3b0db9d591901eb38026b113d09a99e7fb940a29.zip |
C64 SID player
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/xmms-sid/ChangeLog | 15 | ||||
-rw-r--r-- | media-sound/xmms-sid/files/digest-xmms-sid-0.7.3 | 1 | ||||
-rw-r--r-- | media-sound/xmms-sid/xmms-sid-0.7.3.ebuild | 28 |
3 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/xmms-sid/ChangeLog b/media-sound/xmms-sid/ChangeLog new file mode 100644 index 000000000000..42276c72b2ed --- /dev/null +++ b/media-sound/xmms-sid/ChangeLog @@ -0,0 +1,15 @@ +# ChangeLog for media-sound/xmms-sid +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms-sid/ChangeLog,v 1.1 2002/07/18 19:09:28 karltk Exp $ + +*xmms-sid-0.7.3 (18 Jul 2002) + + 18 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> xmms-sid-0.7.3.ebuild files/digest-xmms-sid-0.7.3 : + + From the home page: + + "XMMS-SID is a plugin for XMMS (X MultiMedia System) which provides support + for playing the so-called "SID tunes". For the actual playing, XMMS-SID uses + the excellent libsidplay SID-chip/6502 emulator engine." + + Initial import. diff --git a/media-sound/xmms-sid/files/digest-xmms-sid-0.7.3 b/media-sound/xmms-sid/files/digest-xmms-sid-0.7.3 new file mode 100644 index 000000000000..e113974c78ef --- /dev/null +++ b/media-sound/xmms-sid/files/digest-xmms-sid-0.7.3 @@ -0,0 +1 @@ +MD5 0aef1d224da37ebba9b02eef1c7954ba xmms-sid-0.7.3.tar.bz2 163594 diff --git a/media-sound/xmms-sid/xmms-sid-0.7.3.ebuild b/media-sound/xmms-sid/xmms-sid-0.7.3.ebuild new file mode 100644 index 000000000000..8aaf04fd7de4 --- /dev/null +++ b/media-sound/xmms-sid/xmms-sid-0.7.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms-sid/xmms-sid-0.7.3.ebuild,v 1.1 2002/07/18 19:09:28 karltk Exp $ + +DESCRIPTION="C64 SID plugin for XMMS" +HOMEPAGE="http://www.tnsp.org/xmms-sid.php" +SRC_URI="http://www.tnsp.org/xs-files/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +DEPEND=">=media-sound/xmms-1.2.7" +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 + #make || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS BUGS COPYING ChangeLog INSTALL README* NEWS TODO +} |