blob: 25adc3d944e2e9613bca418e692b23765a8a10cc (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit flag-o-matic
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE="nls"
RDEPEND="dev-cpp/gtkmm:2.4
dev-cpp/libglademm:2.4
>=dev-cpp/gconfmm-2.6
>=dev-libs/libsigc++-2.2:2
media-sound/pulseaudio[glib,gnome]
|| ( x11-themes/tango-icon-theme x11-themes/gnome-icon-theme )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext
dev-util/intltool )
virtual/pkgconfig"
src_configure() {
append-cxxflags -std=c++11 #568590
econf \
--disable-dependency-tracking \
--disable-lynx \
$(use_enable nls)
}
src_install() {
default
dohtml -r doc
}
|