blob: a23c2da405d39d8d07aab260005141022203cd41 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/ksmserver/ksmserver-3.5.8.ebuild,v 1.1 2007/10/19 23:32:28 philantrop Exp $
KMNAME=kdebase
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta eutils
SRC_URI="${SRC_URI}
mirror://gentoo/kdebase-3.5-patchset-07.tar.bz2"
DESCRIPTION="The reliable KDE session manager that talks the standard X11R6"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="kdehiddenvisibility dbus hal pertty"
KMEXTRACTONLY="kdm/kfrontend/themer/"
KMCOMPILEONLY="kdmlib/"
KMNODOCS=true
DEPEND="dbus? ( sys-apps/dbus )
hal? ( sys-apps/hal )"
src_compile() {
myconf="${myconf}
$(use_enable hal)
$(use_enable dbus)"
if use pertty; then
epatch "${FILESDIR}/$KMNAME-${PV}-${PN}-shadowfade.patch"
fi
kde-meta_src_compile
}
pkg_postinst() {
kde_pkg_postinst
if use dbus && use hal ; then
echo
elog "If you don't see any icons next to the suspend/hibernate buttons,"
elog "make sure you use an iconset that provides the files"
elog "\"suspend.png\" and \"hibernate.png\"."
echo
fi
}
|