forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-sound/pulseeffects: 4.6.8 bump
Package-Manager: Portage-2.3.69, Repoman-2.3.17 Signed-off-by: Matthew Thode <[email protected]>
- Loading branch information
1 parent
bbe9610
commit 67522fe
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST pulseeffects-4.6.6.tar.gz 1881680 BLAKE2B 9bb1048b3870824d19f72e29da2ee274ed387bea7fae0036a104694defd47f754fda3fa1668a95ddb8c2ea066c457bb469c3c32292dc7a378625c6f19d9339ff SHA512 ed6482169bb06490bbcbc57f293723089e5750279a74d6ec5ba2693cb1a71df88262e6fd7d91c852ba5a75b07c246992f619299017e856fca38ad5c619486963 | ||
DIST pulseeffects-4.6.7.tar.gz 1880914 BLAKE2B 919f9885c8b991782251257ba13512c5c25ae6590fd3f709b9f142f74f80f9fd15bbdc0cd57a7a7d84cc4c94c795f69db57a13b161cbbebdd2458803e36e8ccc SHA512 138ea6081e3b1751f0cd15d6ae1eb0dbc4156493b37f7c8b48878a6600ec19c8846145b7bef3bccb93b6775bd4f0b9ee998c603152c6526540eaaebcdcaa5d2e | ||
DIST pulseeffects-4.6.8.tar.gz 1882449 BLAKE2B 57a93eeb32304628efb51473912a70485e054ef50e9e9aec9731ba761dd7809ce0a8c3838fc74a04c6a29537bf182a74c6e6715c722ce76670c8be71dc4a5608 SHA512 672204ad90534ad45228b3473902eb8489c8306c7850f2b2a6f983aa89955529fb5381d6a7d703de94dcd658ffd5b560cce17291a0b23654b225ebd301659e74 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit gnome2-utils meson | ||
|
||
DESCRIPTION="Limiter, compressor, reverberation, equalizer auto volume effects for Pulseaudio" | ||
HOMEPAGE="https://github.com/wwmm/pulseeffects" | ||
|
||
if [[ ${PV} == *9999 ]];then | ||
inherit git-r3 | ||
SRC_URI="" | ||
EGIT_REPO_URI="${HOMEPAGE}" | ||
else | ||
SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
fi | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
IUSE="bs2b calf mda-lv2 rubberband" | ||
|
||
#TODO: optional : lilv, zam-plugins (check from archlinux pkg) | ||
RDEPEND=" | ||
>=dev-libs/boost-1.41 | ||
>=dev-cpp/glibmm-2.56.0 | ||
>=dev-cpp/gtkmm-3.20:3.0 | ||
>=dev-libs/glib-2.56:2 | ||
>=dev-libs/libsigc++-2.10:2 | ||
>=x11-libs/gtk+-3.18:3 | ||
>=media-libs/lilv-0.24.2-r1 | ||
>=media-libs/lsp-plugins-1.1.7[lv2] | ||
>=media-libs/gstreamer-1.12.0:1.0 | ||
>=media-libs/gst-plugins-good-1.12.0:1.0 | ||
>=media-libs/gst-plugins-bad-1.12.0:1.0 | ||
bs2b? ( >=media-plugins/gst-plugins-bs2b-1.12.0:1.0 ) | ||
>=media-plugins/gst-plugins-ladspa-1.12.0:1.0 | ||
>=media-plugins/gst-plugins-lv2-1.12.0:1.0 | ||
>=media-plugins/gst-plugins-pulse-1.12.0:1.0 | ||
calf? ( >=media-plugins/calf-0.90.0[lv2] ) | ||
mda-lv2? ( media-plugins/mda-lv2 ) | ||
rubberband? ( media-libs/rubberband ) | ||
>=media-libs/zita-convolver-3.0.0 | ||
media-libs/libebur128 | ||
media-sound/pulseaudio | ||
sys-apps/dbus" | ||
# see 47a950b00c6db383ad07502a8fc396ecca98c1ce for dev-libs/appstream-glib | ||
# and sys-devel/gettext depends reasoning | ||
DEPEND=" | ||
${RDEPEND} | ||
dev-libs/appstream-glib | ||
sys-devel/gettext | ||
" | ||
BDEPEND=" | ||
>=sys-devel/gcc-7.3.0 | ||
dev-util/itstool | ||
media-libs/libsamplerate | ||
virtual/pkgconfig | ||
" | ||
|
||
pkg_postinst(){ | ||
gnome2_gconf_install | ||
gnome2_schemas_update | ||
gnome2_icon_cache_update | ||
} | ||
|
||
pkg_postrm(){ | ||
gnome2_gconf_uninstall | ||
gnome2_schemas_update | ||
gnome2_icon_cache_update | ||
} |