summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZero_Chaos <zerochaos@gentoo.org>2018-03-05 14:08:21 -0500
committerZero_Chaos <zerochaos@gentoo.org>2018-03-05 14:08:38 -0500
commit3165f776ae293e2762ebbf3aec080a607f1e7cc7 (patch)
treecc0f0f472210b2bc10e92dd3f2a797f8635341f2 /media-sound/deinvert
parentsys-devel/automake-1.9.6-r5: alpha stable (diff)
downloadgentoo-3165f776ae293e2762ebbf3aec080a607f1e7cc7.tar.gz
gentoo-3165f776ae293e2762ebbf3aec080a607f1e7cc7.tar.bz2
gentoo-3165f776ae293e2762ebbf3aec080a607f1e7cc7.zip
media-sound/deinvert: initial import
tool to deinvert voice inversion scrambling Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'media-sound/deinvert')
-rw-r--r--media-sound/deinvert/deinvert-9999.ebuild31
-rw-r--r--media-sound/deinvert/metadata.xml12
2 files changed, 43 insertions, 0 deletions
diff --git a/media-sound/deinvert/deinvert-9999.ebuild b/media-sound/deinvert/deinvert-9999.ebuild
new file mode 100644
index 000000000000..8f9dfb0b0b80
--- /dev/null
+++ b/media-sound/deinvert/deinvert-9999.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit git-r3 autotools
+
+DESCRIPTION="A voice inversion descrambler"
+HOMEPAGE="https://github.com/windytan/deinvert"
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/windytan/deinvert.git"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE="+liquid +wav"
+
+DEPEND="liquid? ( net-libs/liquid-dsp )
+ wav? ( media-libs/libsndfile )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ eapply_user
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ $(use_with liquid) \
+ $(use_with wav sndfile)
+}
diff --git a/media-sound/deinvert/metadata.xml b/media-sound/deinvert/metadata.xml
new file mode 100644
index 000000000000..a075d9becd13
--- /dev/null
+++ b/media-sound/deinvert/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>radio@gentoo.org</email>
+ <name>Radio</name>
+ </maintainer>
+ <use>
+ <flag name="liquid">improve sound quality using <pkg>net-libs/liquid-dsp</pkg></flag>
+ <flag name="wav">wav file support using <pkg>media-libs/libsndfile</pkg></flag>
+ </use>
+</pkgmetadata>