diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-11-27 21:51:45 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-11-27 21:51:45 +0000 |
commit | e08f98f3dfae52bb381ac779749c13d47ca708f7 (patch) | |
tree | 3c6c558aaa1626bc77d60b7f13bf31ee1e496bf4 /media-sound | |
parent | moved rmxmms to media-plugins (diff) | |
download | historical-e08f98f3dfae52bb381ac779749c13d47ca708f7.tar.gz historical-e08f98f3dfae52bb381ac779749c13d47ca708f7.tar.bz2 historical-e08f98f3dfae52bb381ac779749c13d47ca708f7.zip |
moved rmxmms to media-plugins
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/rmxmms/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/rmxmms/files/digest-rmxmms-0.5.1 | 1 | ||||
-rw-r--r-- | media-sound/rmxmms/rmxmms-0.5.1.ebuild | 59 |
3 files changed, 0 insertions, 69 deletions
diff --git a/media-sound/rmxmms/ChangeLog b/media-sound/rmxmms/ChangeLog deleted file mode 100644 index 5fb32b197080..000000000000 --- a/media-sound/rmxmms/ChangeLog +++ /dev/null @@ -1,9 +0,0 @@ -# ChangeLog for media-sound/rmxmms -# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/rmxmms/ChangeLog,v 1.1 2002/07/09 08:03:27 aliz Exp $ - -*rmxmms-0.5.1 (09 Jul 2002) - - 09 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> ChangeLog, rmxmms-0.5.1.ebuild, digest-rmxmms-0.5.1 : - - Initial import. Thanks to Michal Prihoda for the ebuild. diff --git a/media-sound/rmxmms/files/digest-rmxmms-0.5.1 b/media-sound/rmxmms/files/digest-rmxmms-0.5.1 deleted file mode 100644 index 566b040925c0..000000000000 --- a/media-sound/rmxmms/files/digest-rmxmms-0.5.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 ecfc51c623b241a8f84b529be4dd3ce7 rmxmms-0.5.1.tar.gz 143228 diff --git a/media-sound/rmxmms/rmxmms-0.5.1.ebuild b/media-sound/rmxmms/rmxmms-0.5.1.ebuild deleted file mode 100644 index dd41dd7fce53..000000000000 --- a/media-sound/rmxmms/rmxmms-0.5.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/rmxmms/rmxmms-0.5.1.ebuild,v 1.4 2002/10/04 21:08:33 vapier Exp $ - -S=${WORKDIR}/rmxmms/${P} -DESCRIPTION="RealAudio plugin for xmms" -SRC_URI="ftp://ftp.xmms.org/xmms/plugins/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.xmms.org http://forms.real.com/rnforms/resources/server/realsystemsdk/index.html#download" -REALSDK="rsg2sdk_r4.tar.gz" - -SLOT="0" -LICENSE="GPL-2 realsdk" -KEYWORDS="x86 -ppc -sparc -sparc64" - -DEPEND="media-sound/xmms - media-video/realplayer" - -src_unpack () { - - # Check if we got the SDK from real.com - if [ ! -f ${DISTDIR}/${REALSDK} ]; then - einfo "Please download the Real System SDK file from www.real.com" - einfo "and place it in ${DISTDIR}." - einfo "The file should be named ${REALSDK} and a good starting point" - einfo "is ${REALSDK_HOMEPAGE}." - einfo "The SDK is needed only to build the plugin, it won't be installed." - rm -rf ${WORKDIR} - exit 1 - fi - - # Unpack both realsdk and rmxmms - mkdir ${WORKDIR}/realsdk - mkdir ${WORKDIR}/rmxmms - - cd ${WORKDIR}/realsdk - unpack ${REALSDK} - - cd ${WORKDIR}/rmxmms - unpack ${A} - -} - -src_compile () { - econf "--with-realsdk-dir=${WORKDIR}/realsdk/rmasdk_6_0" || die - - emake || die -} - -src_install () { - - make install DESTDIR=${D} || die - - dodoc ${S}/README - dodoc ${S}/COPYING - dodoc ${S}/INSTALL - dodoc ${S}/ChangeLog - -} - |