diff options
Diffstat (limited to 'media-sound/sooperlooper/sooperlooper-1.6.17.ebuild')
-rw-r--r-- | media-sound/sooperlooper/sooperlooper-1.6.17.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/media-sound/sooperlooper/sooperlooper-1.6.17.ebuild b/media-sound/sooperlooper/sooperlooper-1.6.17.ebuild new file mode 100644 index 000000000000..7205382661f6 --- /dev/null +++ b/media-sound/sooperlooper/sooperlooper-1.6.17.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 +inherit autotools eutils wxwidgets toolchain-funcs + +DESCRIPTION="Live looping sampler with immediate loop recording" +HOMEPAGE="http://essej.net/sooperlooper/index.html" +SRC_URI="http://essej.net/sooperlooper/${P/_p/-}.tar.gz + mirror://gentoo/${PN}-1.6.5-m4.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="media-sound/jack-audio-connection-kit + x11-libs/wxGTK:2.8 + media-libs/liblo + dev-libs/libsigc++:1.2 + media-libs/libsndfile + media-libs/libsamplerate + dev-libs/libxml2 + media-libs/rubberband + sci-libs/fftw:3.0" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${P/_p*} + +DOCS=( OSC README ) + +src_prepare() { + cp -rf "${WORKDIR}"/aclocal "${S}" || die "copying aclocal failed" + epatch "${FILESDIR}"/${PN}-1.6.5-cxxflags.patch + + AT_M4DIR="${S}"/aclocal eautoreconf + cd "${S}"/libs/midi++ + AT_M4DIR="${S}"/aclocal eautoreconf + cd "${S}"/libs/pbd + AT_M4DIR="${S}"/aclocal eautoreconf +} + +src_compile() { + emake AR=$(tc-getAR) +} + +src_configure() { + WX_GTK_VER="2.8" + need-wxwidgets unicode + + econf \ + --disable-optimize \ + --with-wxconfig-path="${WX_CONFIG}" +} |