summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2004-02-14 06:03:39 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2004-02-14 06:03:39 +0000
commite78666460e9df1a780b70712aa83c8d12730c2b6 (patch)
treefd12a3ecced5d4cdfe34d6d8649d32aa460c8981 /media-sound/ssrc
parent~hppa (diff)
downloadgentoo-2-e78666460e9df1a780b70712aa83c8d12730c2b6.tar.gz
gentoo-2-e78666460e9df1a780b70712aa83c8d12730c2b6.tar.bz2
gentoo-2-e78666460e9df1a780b70712aa83c8d12730c2b6.zip
Sample-rate converter for PCM streams. Ebuild submitted by Felix Riemann <felix@hsgheli.de> in bug #30976.
Diffstat (limited to 'media-sound/ssrc')
-rw-r--r--media-sound/ssrc/ChangeLog10
-rw-r--r--media-sound/ssrc/Manifest2
-rw-r--r--media-sound/ssrc/files/digest-ssrc-1.291
-rw-r--r--media-sound/ssrc/metadata.xml5
-rw-r--r--media-sound/ssrc/ssrc-1.29.ebuild28
5 files changed, 46 insertions, 0 deletions
diff --git a/media-sound/ssrc/ChangeLog b/media-sound/ssrc/ChangeLog
new file mode 100644
index 000000000000..1650451c5fa5
--- /dev/null
+++ b/media-sound/ssrc/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for media-sound/ssrc
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ssrc/ChangeLog,v 1.1 2004/02/14 06:03:39 eradicator Exp $
+
+*ssrc-1.29 (13 Feb 2004)
+
+ 13 Feb 2004; Jeremy Huddleston <eradicator@gentoo.org> ssrc-1.29.ebuild:
+ Sample-rate converter for PCM streams. Ebuild submitted by Felix Riemann
+ <felix@hsgheli.de> in bug #30976.
+
diff --git a/media-sound/ssrc/Manifest b/media-sound/ssrc/Manifest
new file mode 100644
index 000000000000..40e3e3bfacc2
--- /dev/null
+++ b/media-sound/ssrc/Manifest
@@ -0,0 +1,2 @@
+MD5 a336f2e62f3a39a92a5b7a21eb2491e4 ssrc-1.29.ebuild 591
+MD5 17e1cd8c7c60f9ccc3038f85a1ac9e55 files/digest-ssrc-1.29 58
diff --git a/media-sound/ssrc/files/digest-ssrc-1.29 b/media-sound/ssrc/files/digest-ssrc-1.29
new file mode 100644
index 000000000000..7a75d6519b0c
--- /dev/null
+++ b/media-sound/ssrc/files/digest-ssrc-1.29
@@ -0,0 +1 @@
+MD5 6aafee03db0ba8f8be5ebf9372c36fe7 ssrc-1.29.zip 186187
diff --git a/media-sound/ssrc/metadata.xml b/media-sound/ssrc/metadata.xml
new file mode 100644
index 000000000000..e1774e3d9ad7
--- /dev/null
+++ b/media-sound/ssrc/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sound</herd>
+</pkgmetadata>
diff --git a/media-sound/ssrc/ssrc-1.29.ebuild b/media-sound/ssrc/ssrc-1.29.ebuild
new file mode 100644
index 000000000000..f723d1183579
--- /dev/null
+++ b/media-sound/ssrc/ssrc-1.29.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ssrc/ssrc-1.29.ebuild,v 1.1 2004/02/14 06:03:39 eradicator Exp $
+
+S=${WORKDIR}
+DESCRIPTION="A fast and high quality sampling rate converter"
+HOMEPAGE="http://shibatch.sourceforge.net"
+SRC_URI="http://shibatch.sf.net/download/ssrc-1.29.zip"
+LICENSE="LGPL-2.1"
+SLOT="0"
+
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="virtual/glibc"
+RDEPEND="virtual/glibc"
+
+src_compile() {
+ append-flags -lm
+ # Local CFLAGS should overwrite the ones in the Makefile
+ emake -e || die
+}
+
+src_install() {
+ dobin ssrc
+ dobin ssrc_hp
+ dodoc ssrc.txt history.txt
+}