summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris White <chriswhite@gentoo.org>2004-08-19 22:39:48 +0000
committerChris White <chriswhite@gentoo.org>2004-08-19 22:39:48 +0000
commitc64af546e089ca7d54be8133c2dd50d5c54b250d (patch)
tree31095ee326602492b9fbe8a2c5f1c80e8677978d /media-sound
parent60875 (diff)
downloadhistorical-c64af546e089ca7d54be8133c2dd50d5c54b250d.tar.gz
historical-c64af546e089ca7d54be8133c2dd50d5c54b250d.tar.bz2
historical-c64af546e089ca7d54be8133c2dd50d5c54b250d.zip
Moving to media-libs/libdsp
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/libdsp/ChangeLog14
-rw-r--r--media-sound/libdsp/Manifest5
-rw-r--r--media-sound/libdsp/files/Makefile.patch53
-rw-r--r--media-sound/libdsp/files/digest-libdsp-4.9.22
-rw-r--r--media-sound/libdsp/libdsp-4.9.2.ebuild61
-rw-r--r--media-sound/libdsp/metadata.xml8
6 files changed, 0 insertions, 143 deletions
diff --git a/media-sound/libdsp/ChangeLog b/media-sound/libdsp/ChangeLog
deleted file mode 100644
index 13c53592d149..000000000000
--- a/media-sound/libdsp/ChangeLog
+++ /dev/null
@@ -1,14 +0,0 @@
-# ChangeLog for media-sound/libdsp
-# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/libdsp/ChangeLog,v 1.2 2004/07/29 06:15:26 chriswhite Exp $
-
- 29 Jul 2004; Chris White <chriswhite@gentoo.org> libdsp-4.9.2.ebuild:
- Somehow the DEPEND got deleted, added it back.
-
-*libdsp-4.9.2 (29 Jul 2004)
-
- 29 Jul 2004; Chris White <chriswhite@gentoo.org> +metadata.xml,
- +files/Makefile.patch, +libdsp-4.9.2.ebuild:
- Initial commit. Thanks to Ed Wildgoose <gentoo@wildgooses.com> for the bug
- report (Bug #58587). Added myself as maintainer.
-
diff --git a/media-sound/libdsp/Manifest b/media-sound/libdsp/Manifest
deleted file mode 100644
index 576a98937be4..000000000000
--- a/media-sound/libdsp/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-MD5 d2596bad63ed83f18cb6aeb41fbd72b0 libdsp-4.9.2.ebuild 1527
-MD5 dbafe0153b3ee5f599d5dbeac4aa3210 metadata.xml 224
-MD5 d4e42cb20550df460c5211c6a2ef7257 ChangeLog 606
-MD5 0f21eaa6e644359d7a33dad21b8f330d files/Makefile.patch 2012
-MD5 7026d7f1b8c75423ecfad3ceaf859760 files/digest-libdsp-4.9.2 136
diff --git a/media-sound/libdsp/files/Makefile.patch b/media-sound/libdsp/files/Makefile.patch
deleted file mode 100644
index b4a69d176b60..000000000000
--- a/media-sound/libdsp/files/Makefile.patch
+++ /dev/null
@@ -1,53 +0,0 @@
---- libDSP/Makefile.old 2004-07-29 14:11:11.843296616 +0900
-+++ libDSP/Makefile 2004-07-29 14:50:34.059185216 +0900
-@@ -29,14 +29,9 @@
- #CFLAGS = -march=athlon-tbird -mcpu=athlon-xp -m3dnow # -msse -mfpmath=sse
- #CFLAGS = -march=pentium3 -mcpu=pentium3 -msse -mfpmath=sse
- #CFLAGS = -march=pentium4 -mcpu=pentium4 -msse2 -mfpmath=sse -m128bit-long-double
--CFLAGS += -O3 -ffast-math -funroll-loops -fprefetch-loop-arrays -Wall -Werror #-g
--CFLAGS += -ftracer
--OPTCFLAGS = -march=pentium2 -mcpu=pentium4 -mmmx
- #OPTCFLAGS = -march=athlon-tbird -mcpu=athlon-xp -m3dnow
- #OPTCFLAGS = -march=pentium3 -mcpu=pentium3 -msse
- #OPTCFLAGS = -march=pentium4 -mcpu=pentium4 -msse2 -m128bit-long-double
--OPTCFLAGS += -O3 -ffast-math -funroll-loops -fprefetch-loop-arrays -Wall -Werror #-g
--OPTCFLAGS += -ftracer
- CXXFLAGS = $(CFLAGS)
-
- # thread safety
-@@ -52,7 +47,7 @@
- # define for Intel Integrated Performance Primitives support
- #DEFS += -DDSP_IPP
-
--INCS = -I. #-I/usr/local/include
-+INCS = -I. -I../Inlines #-I/usr/local/include
- #INCS += `pkg-config --cflags fftw3f fftw3`
- #INCS += -I/opt/intel/ipp/include
-
-@@ -154,7 +149,7 @@
- $(LIBTOOL) --mode=compile $(CXX) $(CXXFLAGS) $(DEFS) $(INCS) -c $<
-
- X86.$(OBJ): X86.$(CSRC)
-- $(LIBTOOL) --mode=compile $(CC) $(OPTCFLAGS) $(DEFS) $(INCS) -c $<
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(DEFS) $(INCS) -c $<
-
- libdsp.la: $(OBJS)
- $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -rpath $(TGPREFIX)/lib -version-info $(VERSION) -o libdsp.la $(LOBJS) $(LIBS)
---- DynThreads/Makefile.old 2004-07-29 14:14:35.034406872 +0900
-+++ DynThreads/Makefile 2004-07-29 14:51:14.760997600 +0900
-@@ -21,7 +21,7 @@
- CXXFLAGS = -march=pentium2 -mcpu=athlon-xp -O2 -Wall -Werror #-ggdb
- DEFS = -D_REENTRANT -D_THREAD_SAFE
- #DEFS += -DUSE_NPTL
--INCS = #-I/usr/local/include
-+INCS = -I. -I../Inlines #-I/usr/local/include
- LIBS = -lpthread
-
- PREFIX = /usr/local
-@@ -57,6 +57,3 @@
-
- DynThreads.dep: $(SRCS)
- $(CXX) -MM $(DEFS) $(INCS) $(SRCS) >DynThreads.dep
--
--include DynThreads.dep
--
diff --git a/media-sound/libdsp/files/digest-libdsp-4.9.2 b/media-sound/libdsp/files/digest-libdsp-4.9.2
deleted file mode 100644
index d341d2f15883..000000000000
--- a/media-sound/libdsp/files/digest-libdsp-4.9.2
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 91ff67c7d4c25e73ab7166f0ebf873e6 libdsp-src-4.9.2.tar.gz 324883
-MD5 bd51911d22b7f67bf7c67277f73c6f5c libdsp-doc-html.tar.gz 1299174
diff --git a/media-sound/libdsp/libdsp-4.9.2.ebuild b/media-sound/libdsp/libdsp-4.9.2.ebuild
deleted file mode 100644
index 1e6a62bea587..000000000000
--- a/media-sound/libdsp/libdsp-4.9.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/libdsp/libdsp-4.9.2.ebuild,v 1.2 2004/07/29 06:15:26 chriswhite Exp $
-
-IUSE="doc"
-
-inherit eutils
-
-DESCRIPTION="C++ class library of common digital signal processing functions."
-HOMEPAGE="http://libdsp.sf.net"
-SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.tar.gz
- doc? mirror://sourceforge/${PN}/${PN}-doc-html.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-DEPEND=""
-
-S=${WORKDIR}/${PN}-src-${PV}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-}
-
-src_compile() {
- # fixes some Makefile weirdness
- epatch ${FILESDIR}/Makefile.patch
-
- # use our CFLAGS/CXXFLAGS instead
- sed -e "s:^CFLAGS.*:CFLAGS = ${CFLAGS}:" -i libDSP/Makefile
- sed -e "s:^CXXFLAGS.*:CXXFLAGS = ${CXXFLAGS}:" -i DynThreads/Makefile
-
- # use our PREFIX too
- sed -e "s:^PREFIX.*:PREFIX = ${D}/usr:" -i libDSP/Makefile
- sed -e "s:^PREFIX.*:PREFIX = ${D}/usr:" -i DynThreads/Makefile
-
- # libtool only supports the --tag option from v1.5 onwards
- if ! has_version >= sys-devel/libtool-1.5.0; then
- sed -e "s/^LIBTOOL = libtool --tag=CXX/LIBTOOL = libtool/" -i libDSP/Makefile
- fi
-
- cd ${S}/DynThreads
- emake || die "DynThreads make failed!"
-
- cd ${S}/libDSP
- emake || die "libDSP make failed!"
-}
-
-src_install() {
-
- cd ${S}/DynThreads
- make install || die "DynThreads install failed!"
-
- cd ${S}/libDSP
- make install || die "libDSP install failed!"
-
- if use doc; then
- dohtml ${WORKDIR}/${PN}-doc-html/*
- fi
-}
diff --git a/media-sound/libdsp/metadata.xml b/media-sound/libdsp/metadata.xml
deleted file mode 100644
index ec6a427b666f..000000000000
--- a/media-sound/libdsp/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>sound</herd>
-<maintainer>
- <email>chriswhite@gentoo.org</email>
-</maintainer>
-</pkgmetadata>