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.
Package-Manager: Portage-2.3.14, Repoman-2.3.6
- Loading branch information
1 parent
6104594
commit 6b9ecfe
Showing
2 changed files
with
61 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-3.0.8.tar.gz 604530 BLAKE2B e55b08a861f8a9b45191727d000b28b6468d1d46328726ef30f63733bf6b3dd6b745d3f4c38f54c5924950c489c70bb87b57ada4735ce68420d678e93019da65 SHA512 2610b19c0a61510ab9ab29d2fb038a76dcdaf6c168f57d13df8baf32493cf2fe56cfad73f862144117ce511864b405c9d78f294afcab6bc4336ffc234e18110b | ||
DIST pulseeffects-3.0.9.tar.gz 614347 BLAKE2B ab24d1af31b359348de8de235694100be20cf961c358b63a043670f82efa17afe25b0cf9e723c6be228bd70af2ce0bc91176f6371a549799a4c7921f2fcf7368 SHA512 aad31f042ff1f1e15c50f2a7a63f73b3878fad56101e0fabb51ed2e48500451b401ece8db56c23049ac4455deb481ba0c0586aa9a753581acdb3749a219046f4 | ||
DIST pulseeffects-3.1.1.tar.gz 603601 BLAKE2B cca83dfb70723016ae96e0a2a82b93dd8c1db3f4b9fa838098e0539ba26b48d4bc1f3aeed52de0e9d9a9d6c78ce7df2273e7287f26bae7cb0f2f9ef62dc47683 SHA512 a6091a890c244a0b67a187a3668dd746755a21c0eec6ba90f809061c6c4e1e5ecffe61d940d5dc1203c02c4b9c9f43ad29dc28859795863ef9418abefcfacd59 |
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,60 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
PYTHON_COMPAT=( python3_{4,5,6} ) | ||
|
||
inherit gnome2-utils meson python-r1 | ||
|
||
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}" | ||
KEYWORDS="" | ||
else | ||
SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
KEYWORDS="~x86 ~amd64" | ||
fi | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
DEPEND=" | ||
${PYTHON_DEPS} | ||
python_targets_python3_4? ( dev-python/configparser ) | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
dev-python/pygobject:3[${PYTHON_USEDEP}] | ||
dev-python/pycairo[${PYTHON_USEDEP}] | ||
>=dev-python/gst-python-1.12.0:1.0[${PYTHON_USEDEP}] | ||
media-plugins/swh-plugins | ||
>=x11-libs/gtk+-3.18:3 | ||
dev-python/numpy[${PYTHON_USEDEP}] | ||
>=sci-libs/scipy-0.18[${PYTHON_USEDEP}] | ||
>=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 | ||
>=media-plugins/gst-plugins-ladspa-1.12.0:1.0 | ||
>=media-plugins/gst-plugins-pulse-1.12.0:1.0 | ||
" | ||
RDEPEND="${DEPEND} | ||
media-sound/pulseaudio[equalizer] | ||
" | ||
|
||
pkg_preinst(){ | ||
gnome2_schemas_savelist | ||
} | ||
|
||
pkg_postinst(){ | ||
gnome2_gconf_install | ||
gnome2_schemas_update | ||
} | ||
|
||
pkg_postrm(){ | ||
gnome2_gconf_uninstall | ||
gnome2_schemas_update | ||
} |