mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-sound/easyeffects: add 6.2.5
Signed-off-by: Marek Szuba <marecki@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST easyeffects-6.2.3.tar.gz 2621460 BLAKE2B fb73c635b10dec5808d046a4df63cdaaada1c3534f1e9275fdd4f28db52a9111a850367b564b5d008a1bdb7c7e55864e38cc1d50fc363b5614fb138bd0fe0cc1 SHA512 79babe59ef0c86d138b29a4c2dfaa1a937da9de8d7ae7cc40bee6ae5e011b6c43d6ff9554885ce116114943976d50c24c44c4e30775933b5ee8a2bf350d55525
|
||||
DIST easyeffects-6.2.4.tar.gz 2648725 BLAKE2B 8d4f10f286ed4b3468ffa2e3b5331b9dfd9c266b0a6a35b373856be14c8465032c79ebad2826ff7ebb1a8db3d81a57fef398880fa7601282da672d5348dae817 SHA512 1c7a9fb95bab3fe039d96420d465d8dfa0d42bf3c04081c5b258f3f227923229f658d6e8152587bf38b26e0a3f3c73b5b89a1a8c9b42807b7e02b776f419e361
|
||||
DIST easyeffects-6.2.5.tar.gz 2673461 BLAKE2B b254dbee930d4ed3c87f27e41321f5b2151bcda258cece4a6fbb7f1465b839851bf82b3fb5517bee44c23bef34f53fe7dce8f54295d93473e7e19622131c3274 SHA512 260b864e5928191dd5574e23a5f51f4df0dcc552c44ecf2d0c1166d589fc1b4320b9da786de88c8837dcb28527163051dc80b5a5a33a9cdde2466405c73248f2
|
||||
|
||||
79
media-sound/easyeffects/easyeffects-6.2.5.ebuild
Normal file
79
media-sound/easyeffects/easyeffects-6.2.5.ebuild
Normal file
@@ -0,0 +1,79 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit gnome2-utils flag-o-matic meson
|
||||
|
||||
DESCRIPTION="Limiter, auto volume and many other plugins for PipeWire applications"
|
||||
HOMEPAGE="https://github.com/wwmm/easyeffects"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/wwmm/easyeffects"
|
||||
else
|
||||
SRC_URI="https://github.com/wwmm/easyeffects/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="calf +doc mda-lv2 zamaudio"
|
||||
|
||||
# Tests fail since 6.1.0 due to upstream changes to the metainfo file.
|
||||
# TODO: check this every release.
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND="dev-cpp/nlohmann_json
|
||||
dev-cpp/tbb
|
||||
>=dev-libs/glib-2.56:2
|
||||
dev-libs/libfmt
|
||||
>=dev-libs/libsigc++-3.0.6:3
|
||||
>=gui-libs/gtk-4.2.1:4
|
||||
gui-libs/libadwaita:1
|
||||
media-libs/libbs2b
|
||||
>=media-libs/libebur128-1.2.0
|
||||
media-libs/libsndfile
|
||||
>=media-libs/lilv-0.22
|
||||
>=media-libs/lv2-1.18.2
|
||||
media-libs/rnnoise
|
||||
media-libs/rubberband[ladspa]
|
||||
media-libs/speexdsp
|
||||
>=media-libs/zita-convolver-3.0.0
|
||||
>=media-video/pipewire-0.3.41
|
||||
sci-libs/fftw:3.0"
|
||||
RDEPEND="${DEPEND}
|
||||
>=media-libs/lsp-plugins-1.1.24[lv2]
|
||||
sys-apps/dbus
|
||||
calf? ( >=media-plugins/calf-0.90.1[lv2] )
|
||||
doc? ( gnome-extra/yelp )
|
||||
mda-lv2? ( media-plugins/mda-lv2 )
|
||||
zamaudio? ( media-plugins/zam-plugins )"
|
||||
# Only header files are used from libsamplerate so put it here rather than DEPEND
|
||||
# to avoid unnecessary cross-compilation.
|
||||
BDEPEND="dev-libs/appstream-glib
|
||||
dev-util/desktop-file-utils
|
||||
dev-util/itstool
|
||||
media-libs/libsamplerate
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig"
|
||||
|
||||
pkg_pretend() {
|
||||
if [[ ${MERGE_TYPE} != "binary" ]] ; then
|
||||
if ! test-flag-CXX -std=c++20 ; then
|
||||
die "${PN} requires degree of C++20 support only available since GCC 10 or Clang 10"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_gconf_install
|
||||
gnome2_schemas_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_gconf_uninstall
|
||||
gnome2_schemas_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
Reference in New Issue
Block a user