summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn J. Ellis <jje@gentoo.org>2003-06-20 23:48:42 +0000
committerJohn J. Ellis <jje@gentoo.org>2003-06-20 23:48:42 +0000
commit0cda98db5f152360e580cc60d08c27f8d77e2982 (patch)
treea66233bb2b9121a5d5e84e945d82e837c9634b46 /media-sound/snd
parentremoved old version and moved current to stable. (diff)
downloadhistorical-0cda98db5f152360e580cc60d08c27f8d77e2982.tar.gz
historical-0cda98db5f152360e580cc60d08c27f8d77e2982.tar.bz2
historical-0cda98db5f152360e580cc60d08c27f8d77e2982.zip
removed old version and moved current to stable.
Diffstat (limited to 'media-sound/snd')
-rw-r--r--media-sound/snd/Manifest4
-rw-r--r--media-sound/snd/files/digest-snd-61
-rw-r--r--media-sound/snd/snd-6.7.ebuild4
-rw-r--r--media-sound/snd/snd-6.ebuild74
4 files changed, 4 insertions, 79 deletions
diff --git a/media-sound/snd/Manifest b/media-sound/snd/Manifest
index 1c5fb25fe5ef..7d5ff2717834 100644
--- a/media-sound/snd/Manifest
+++ b/media-sound/snd/Manifest
@@ -1,3 +1,3 @@
-MD5 4dd3efaab9fe03a8d4e290e41e6af86c ChangeLog 961
-MD5 f3b8e56b4f929376890b22b67785e201 snd-6.7.ebuild 1668
+MD5 d6c42daa0962efa9dd119d761c4e0412 ChangeLog 1071
+MD5 8c8ca1ea85b20b59e3f10d33975e6238 snd-6.7.ebuild 1668
MD5 cfd80dce79511197bafc596a9125c832 files/digest-snd-6.7 60
diff --git a/media-sound/snd/files/digest-snd-6 b/media-sound/snd/files/digest-snd-6
deleted file mode 100644
index e5970cfb2cb2..000000000000
--- a/media-sound/snd/files/digest-snd-6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3168a858919dcc9a07ad686929a4acf2 snd-6.tar.gz 4363778
diff --git a/media-sound/snd/snd-6.7.ebuild b/media-sound/snd/snd-6.7.ebuild
index 31c0de0495f2..bc8537e35406 100644
--- a/media-sound/snd/snd-6.7.ebuild
+++ b/media-sound/snd/snd-6.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/snd/snd-6.7.ebuild,v 1.2 2003/05/14 11:20:31 jje Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/snd/snd-6.7.ebuild,v 1.3 2003/06/20 23:48:31 jje Exp $
IUSE="esd motif guile X gtk ruby alsa"
@@ -11,7 +11,7 @@ HOMEPAGE="http://snd.sourceforge.net"
SLOT="0"
LICENSE="as-is"
-KEYWORDS="~x86"
+KEYWORDS="x86"
DEPEND="X? ( virtual/x11 )
dev-libs/gsl
diff --git a/media-sound/snd/snd-6.ebuild b/media-sound/snd/snd-6.ebuild
deleted file mode 100644
index 58ab0f25966c..000000000000
--- a/media-sound/snd/snd-6.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/snd/snd-6.ebuild,v 1.4 2003/02/13 13:19:23 vapier Exp $
-
-IUSE="esd motif guile X gtk ruby alsa"
-
-S="${WORKDIR}/${P}"
-DESCRIPTION="Snd is a sound editor"
-SRC_URI="ftp://ccrma-ftp.stanford.edu/pub/Lisp/${P}.tar.gz"
-HOMEPAGE="http://www-ccrma.stanford.edu/software/snd/"
-
-SLOT="0"
-LICENSE="as-is"
-KEYWORDS="x86"
-
-DEPEND="X? ( virtual/x11 )
- dev-libs/gsl
- media-libs/ladspa-sdk
- media-libs/audiofile
- esd? ( media-sound/esound )
- alsa? ( media-libs/alsa-lib )
- gtk? ( x11-libs/gtk+ )
- guile? ( dev-util/guile )
- motif? ( x11-libs/openmotif )
- ruby? ( dev-lang/ruby )"
-
-
-src_compile() {
- local myconf
-
- use alsa \
- && myconf="${myconf} --with-alsa" \
- || myconf="${myconf} --without-alsa"
-
- use esd \
- && myconf="${myconf} --with-esd" \
- || myconf="${myconf} --without-esd"
-
- use gtk \
- && myconf="${myconf} --with-gtk" \
- || myconf="${myconf} --without-gtk"
-
- use guile \
- && myconf="${myconf} --with-guile --with-run" \
- || myconf="${myconf} --without-guile"
-
- use ruby \
- && myconf="${myconf} --with-ruby" \
- || myconf="${myconf} --without-ruby"
-
- use X \
- && myconf="${myconf} --with-x" \
- || myconf="${myconf} --without-x"
-
-# Seems to cause problem I will look into it but for now we will just disable
-# use gl \
-# && myconf="${myconf} --with-just-gl" \
-# || myconf="${myconf} --without-gl"
-
- econf --with-ladspa --with-float-samples \
- --with-float-sample-width ${myconf} || die
-
- emake || die
-}
-
-src_install () {
-
- dobin snd
-
- dodoc COPYING HISTORY.Snd README.Snd TODO.Snd
-
- cd contrib/tutorial
- dohtml *
-}