diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-11-04 10:59:02 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-11-04 11:30:16 +0100 |
commit | 3bf8155fb304bc2290d04d2237a65a82b7a921dd (patch) | |
tree | fa305a51bd42f3be83283076051b59b2e32787f0 /media-sound/terminatorx/terminatorx-4.0.1.ebuild | |
parent | app-emulation/xen: drop old vulnerable version (diff) | |
download | gentoo-3bf8155fb304bc2290d04d2237a65a82b7a921dd.tar.gz gentoo-3bf8155fb304bc2290d04d2237a65a82b7a921dd.tar.bz2 gentoo-3bf8155fb304bc2290d04d2237a65a82b7a921dd.zip |
media-sound/terminatorx: Version bump
Package-Manager: portage-2.3.2
Diffstat (limited to 'media-sound/terminatorx/terminatorx-4.0.1.ebuild')
-rw-r--r-- | media-sound/terminatorx/terminatorx-4.0.1.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/media-sound/terminatorx/terminatorx-4.0.1.ebuild b/media-sound/terminatorx/terminatorx-4.0.1.ebuild new file mode 100644 index 000000000000..bec9cd933502 --- /dev/null +++ b/media-sound/terminatorx/terminatorx-4.0.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit gnome2 + +MY_P=${P/terminatorx/terminatorX} +DESCRIPTION='realtime audio synthesizer that allows you to "scratch" on digitally sampled audio data' +HOMEPAGE="http://www.terminatorx.org/" +SRC_URI="http://www.terminatorx.org/dist/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="X alsa debug mad pulseaudio vorbis sox" + +RDEPEND=" + alsa? ( media-libs/alsa-lib ) + mad? ( media-sound/madplay ) + pulseaudio? ( media-sound/pulseaudio ) + vorbis? ( media-libs/libvorbis ) + sox? ( media-sound/sox + media-sound/mpg123 ) + x11-libs/gtk+:3 + >=dev-libs/glib-2.2:2 + + X? ( + x11-libs/libXi + x11-libs/libXxf86dga + x11-proto/xproto + x11-proto/inputproto + x11-proto/xf86dgaproto ) + dev-libs/libxml2:2 + media-libs/audiofile:= + media-libs/ladspa-sdk + media-libs/ladspa-cmt + media-libs/liblrdf +" +DEPEND="${RDEPEND} + app-text/gnome-doc-utils + virtual/pkgconfig +" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + gnome2_src_configure \ + $(use_enable alsa) \ + $(use_enable debug) \ + $(use_enable mad) \ + $(use_enable pulseaudio pulse) \ + $(use_enable vorbis) \ + $(use_enable sox) \ + $(use_enable X x11) +} |