blob: 2a50a8194f669d786ea86bd30d783556696551d6 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/paprefs/paprefs-0.9.8.ebuild,v 1.3 2009/12/10 18:00:49 ssuominen Exp $
EAPI=2
inherit autotools
DESCRIPTION="PulseAudio Preferences, configuration dialog for PulseAudio"
HOMEPAGE="http://0pointer.de/lennart/projects/paprefs"
SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="nls"
# Icon Theme is used for Icon=preferences-desktop in desktop entry.
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-0.9.5[glib]
|| ( x11-themes/tango-icon-theme x11-themes/gnome-icon-theme )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext
dev-util/intltool )
dev-util/pkgconfig"
src_prepare() {
# This package was intltoolized with broken version. Please drop this
# hack from next ebuild.
if use nls; then
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
fi
}
src_configure() {
econf \
--disable-dependency-tracking \
--disable-lynx \
$(use_enable nls)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dohtml -r doc
dodoc README
}
|