Dropping paulstretch, needs more time than I have.

pull/4/head
audiodef 6 years ago
parent 906cb69f98
commit 70f5775499

@ -1,4 +0,0 @@
AUX fix-mp3inputs.patch 277 SHA256 d377bea0ec6562db46d72cbf7e1f1198d17bec2e0be8c1ee5b9a5fbe0d009af2 SHA512 17b09acf6448b56420e755cd084fa712d9bb77603c1183c18ed8431902813b65db76eeb43bb37afd67c7865755b491070017031c55321ee80d90deb73e008467 WHIRLPOOL d4f2173f3a4cf90b4b9972bc94d61af42ab65d07bc4b4a6389bb063886a03c32ad1fa4db2609589c511c994ca790b1048c88d5360578e62df5fe5ea8b2cdad3f
DIST paulstretch-2.2-2.tar.bz2 52998 SHA256 3902a7e0479bfd5eb3c77a2e8b0b38fb491dbb136305b25c54231a1fdce81297 SHA512 cb076edc8ffcaae651220345b7205b8317cc8eed175c2a88992e8e27e2173b42272da4267dbd5054a2fc01eec7c104e816369eee86b39d746bf9eab3d7f55bc6 WHIRLPOOL 7fd1a3912ab947e4c14c586b4f86b053ff99e9916561f01f98250dd5c873fc0c5d4a5d3f5569e85a842466e789fc3d4cfe3495bd40f1fb1058e957a16c358d9d
EBUILD paulstretch-2.2.2.ebuild 1459 SHA256 38d696ed7dbbb6df20fe392ca316a48333eff0ad851f69f1a3437acbcdee3087 SHA512 764cbc13e41e7f1c46faf5b56032d0b4d75ed88895a37622ccd40c60a397e6702887369c6b3d31e2f52bffdeaddca2961b8f4e8eb9e0f294cdc4d740a2948af6 WHIRLPOOL 928699820caa37d34d3da1928d5aa6643cfd915bdee7a9a2857985cb8c36aef3d5bec60fb1693ecc25e3e2817a02261ae0b293de183c08603a719dd817bc4476
MISC metadata.xml 268 SHA256 5282aab6c2a736ddaef248439b72c58de65a1f6f505712225ca9e76e489426fa SHA512 7ced5751a8c96a7f30460b7a6be94acc55be72c8db3e0f845d1fedb65e08c8c82f7cde2fcada4014f586fdbf8e91390e98414bcbe134b206d20d60ecb19294a1 WHIRLPOOL ce0e8cd0618c32e6e1de79e44be18fdd716672297f9fe24019f327eb80f8889456c6312626a3368b92ec9d7b71ed937488f168a4cad7c0322b190536546fb8aa

@ -1,10 +0,0 @@
--- Input/MP3InputS.h 2009-04-23 22:12:04.000000000 +0300
+++ Input/MP3InputSmy.h 2010-07-21 08:34:36.000000000 +0300
@@ -19,6 +19,7 @@
#ifndef MP3_INPUT_H
#define MP3_INPUT_H
#include <string>
+#include <string.h>
#include <stdio.h>
#include <mad.h>
#include "InputS.h"

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>webmaster@gentoostudio.org</email>
<name>Gentoo Studio/Damien Moody</name>
</maintainer>
</pkgmetadata>

@ -1,65 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils toolchain-funcs
DESCRIPTION="Extreme sound stretching tool"
HOMEPAGE="http://hypermammut.sourceforge.net/paulstretch"
MY_P="${PN}-2.2-2"
SRC_URI="https://gentoostudio.org/src/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE="fftw jack"
RDEPEND="media-libs/portaudio
media-libs/audiofile
>=x11-libs/fltk-1.1.7
fftw? ( =sci-libs/fftw-3* )
jack? (
virtual/jack
=sci-libs/fftw-3*
)"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}-2.2-2"
src_prepare() {
default
epatch "${FILESDIR}/fix-mp3inputs.patch"
}
src_compile() {
if ! use jack; then
if use fftw; then
sed -i -e "s:g++ -ggdb:$(tc-getCXX) ${CFLAGS} ${LDFLAGS}:" \
compile_linux_fftw.sh || die "sed fix failed"
else
sed -i -e "s:g++ -ggdb:$(tc-getCXX) ${CFLAGS} ${LDFLAGS}:" \
compile_linux_kissfft.sh || die "sed fix failed"
fi
else
sed -i -e "s:g++ -ggdb:$(tc-getCXX) ${CFLAGS} ${LDFLAGS}:" \
compile_linux_fftw_jack.sh || die "sed fix failed"
fi
# outfile=paulstretch
# fluid -c GUI.fl || die "generate gui failed"
if ! use jack; then
if use fftw ;then
./compile_linux_fftw.sh || die "compilation failed"
else
./compile_linux_kissfft.sh || die "compilation failed"
fi
else
./compile_linux_fftw_jack.sh || die "compilation failed"
fi
}
src_install() {
dobin paulstretch
dodoc readme.txt
}
Loading…
Cancel
Save