blob: 071f00291c2a3b6d9557ea33ac36dea2eb6815d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic xdg
DESCRIPTION="PulseAudio Preferences, configuration dialog for PulseAudio"
HOMEPAGE="https://freedesktop.org/software/pulseaudio/paprefs"
#SRC_URI="https://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz"
SRC_URI="https://dev.gentoo.org/~polynomial-c/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc ~x86"
IUSE="nls"
RDEPEND="dev-cpp/glibmm:2
dev-cpp/gtkmm:3.0
dev-libs/dbus-glib
>=dev-libs/libsigc++-2.2:2
>=media-sound/pulseaudio-12.0-r1[glib]
|| (
x11-themes/tango-icon-theme
x11-themes/adwaita-icon-theme
)"
DEPEND="${RDEPEND}
nls? (
sys-devel/gettext
dev-util/intltool
)
virtual/pkgconfig"
src_configure() {
append-cxxflags -std=c++11 #568590
local myeconfargs=(
--disable-lynx
$(use_enable nls)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
docinto html
dodoc -r doc
}
pkg_postinst() {
xdg_desktop_database_update
}
pkg_postrm() {
xdg_desktop_database_update
}
|