bump non-liblxqt dependent things to new versions

This commit is contained in:
2018-04-15 23:21:59 +02:00
parent 6548144a93
commit 6f06f22917
11 changed files with 155 additions and 3 deletions

View File

@@ -0,0 +1 @@
DIST pavucontrol-qt-0.3.0.tar.xz 34992 BLAKE2B 46c5fdff428fd71f21532e554f15aed215ad834d7fff854f5c96b0876285d203e9f7d8d4f86c049824bbfb21bdff1ae7b885debce4451788ae7c2977ddc280a0 SHA512 689292049557425d70ecabb42112422737f8a26bfa5416d3018d69f2d2cde20d95a752a0750fe3ced26d71c1051d5bb8a13208396f48ce9d0027b7591e4bdef5

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>lxqt@gentoo.org</email>
<name>LXQt</name>
</maintainer>
<upstream>
<remote-id type="github">lxqt/pavucontrol-qt</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="A Pulseaudio mixer in Qt (port of pavucontrol)"
HOMEPAGE="https://lxqt.org/"
if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
else
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
LICENSE="LGPL-2.1+"
SLOT="0"
RDEPEND="
dev-libs/glib:2
dev-libs/libqtxdg:0/3
media-sound/pulseaudio[glib]
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtwidgets:5
"
DEPEND="${RDEPEND}
>=dev-util/lxqt-build-tools-0.4.0
dev-qt/linguist-tools:5
virtual/pkgconfig
"
src_configure() {
local mycmakeargs=(
-DPULL_TRANSLATIONS=OFF
)
cmake-utils_src_configure
}