1
0
Fork 0

Add Dragonfly Reverb

This commit is contained in:
Ryan Fox 2020-08-16 02:55:58 +00:00
parent 19bb41ee3d
commit 9b42f29e9f
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
4 changed files with 119 additions and 0 deletions

View File

@ -0,0 +1,3 @@
EBUILD dragonfly-reverb-3.2.0.ebuild 1571 BLAKE2B a3353bdad52e310651e3d7033938865e478bb31bed06941b35e4decbebabc1441e7ee63e3fdab62b30ad8709b901dc9487af6e0e56d68c7eca004c58a8af54d6 SHA512 2d0c2a6b4cf93753f2ad241b92230d35b8a840f49364e5b7b3734b3744d1e0ab70f01806b176a00b2666d896808e4ca3beeaef49fd6d0b9c1f816b0f3151f77b
EBUILD dragonfly-reverb-9999.ebuild 1571 BLAKE2B a3353bdad52e310651e3d7033938865e478bb31bed06941b35e4decbebabc1441e7ee63e3fdab62b30ad8709b901dc9487af6e0e56d68c7eca004c58a8af54d6 SHA512 2d0c2a6b4cf93753f2ad241b92230d35b8a840f49364e5b7b3734b3744d1e0ab70f01806b176a00b2666d896808e4ca3beeaef49fd6d0b9c1f816b0f3151f77b
MISC metadata.xml 236 BLAKE2B fdb34c66e3059efc0efb2328ffedb24c495be95dfeb68b7adcdf5ab1a88eee6788294d07ec032238de7d9127cffd50a1598b42aa8f99d3d11f54a761c79a9482 SHA512 43add4c2db3d06110521dea982cfcbddc98d63bb1e1b89952511654d54f09746e0d76ac1e0f0e70d2832357f44fe11fc4653500b856c7b29d05a55bb70535e80

View File

@ -0,0 +1,54 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3
EGIT_REPO_URI="https://github.com/michaelwillis/dragonfly-reverb.git"
if [[ ${PV} != *9999* ]]; then
EGIT_COMMIT=${PV} # The DPF submodule has no tags
KEYWORDS="~amd64"
fi
DESCRIPTION="A set of free reverb effects"
HOMEPAGE="https://michaelwillis.github.io/dragonfly-reverb/"
LICENSE="GPL-3"
SLOT="0"
IUSE="system-freeverb3" # Enabling this breaks the build for now
DEPEND="
x11-libs/libGLw
"
RDEPEND="${DEPEND}"
BDEPEND="
system-freeverb3? ( media-libs/freeverb3 )
system-freeverb3? ( media-libs/libsamplerate )
virtual/jack
x11-libs/libX11
"
src_compile() {
export SKIP_STRIPPING=true
if use system-freeverb3; then
export SYSTEM_FREEVERB3=true
fi
default_src_compile
}
src_install() {
dobin bin/DragonflyEarlyReflections
dobin bin/DragonflyPlateReverb
dobin bin/DragonflyHallReverb
dobin bin/DragonflyRoomReverb
dodir /usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyEarlyReflections-vst.so ${D}/usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyPlateReverb-vst.so ${D}/usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyHallReverb-vst.so ${D}/usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyRoomReverb-vst.so ${D}/usr/$(get_libdir)/vst
dodir /usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyEarlyReflections.lv2 ${D}/usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyPlateReverb.lv2 ${D}/usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyHallReverb.lv2 ${D}/usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyRoomReverb.lv2 ${D}/usr/$(get_libdir)/lv2
}

View File

@ -0,0 +1,54 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3
EGIT_REPO_URI="https://github.com/michaelwillis/dragonfly-reverb.git"
if [[ ${PV} != *9999* ]]; then
EGIT_COMMIT=${PV} # The DPF submodule has no tags
KEYWORDS="~amd64"
fi
DESCRIPTION="A set of free reverb effects"
HOMEPAGE="https://michaelwillis.github.io/dragonfly-reverb/"
LICENSE="GPL-3"
SLOT="0"
IUSE="system-freeverb3" # Enabling this breaks the build for now
DEPEND="
x11-libs/libGLw
"
RDEPEND="${DEPEND}"
BDEPEND="
system-freeverb3? ( media-libs/freeverb3 )
system-freeverb3? ( media-libs/libsamplerate )
virtual/jack
x11-libs/libX11
"
src_compile() {
export SKIP_STRIPPING=true
if use system-freeverb3; then
export SYSTEM_FREEVERB3=true
fi
default_src_compile
}
src_install() {
dobin bin/DragonflyEarlyReflections
dobin bin/DragonflyPlateReverb
dobin bin/DragonflyHallReverb
dobin bin/DragonflyRoomReverb
dodir /usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyEarlyReflections-vst.so ${D}/usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyPlateReverb-vst.so ${D}/usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyHallReverb-vst.so ${D}/usr/$(get_libdir)/vst
cp ${S}/bin/DragonflyRoomReverb-vst.so ${D}/usr/$(get_libdir)/vst
dodir /usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyEarlyReflections.lv2 ${D}/usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyPlateReverb.lv2 ${D}/usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyHallReverb.lv2 ${D}/usr/$(get_libdir)/lv2
cp -r ${S}/bin/DragonflyRoomReverb.lv2 ${D}/usr/$(get_libdir)/lv2
}

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>flewkey@2a03.party</email>
<name>Ryan Fox</name>
</maintainer>
</pkgmetadata>