blob: 18382475aa0929751a47597dfc8e081764c44b6d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeadmin/kdeadmin-3.4.0.ebuild,v 1.2 2005/03/18 17:22:51 morfic Exp $
inherit kde-dist
DESCRIPTION="KDE administration tools (user manager, etc.)"
KEYWORDS="~x86 ~amd64 ~sparc ~ppc"
IUSE=""
DEPEND="~kde-base/kdebase-${PV}"
src_compile() {
# we only want to compile the lilo config module on x86, but there we want to make sure it's
# always compiled to ensure consistent behaviour of the package across both lilo and grub systems,
# because configure when left to its own devices will build lilo-config or not basd on whether
# lilo is present in the path.
# so, we make configure build it by removing the configure.in.in file that checks for
# lilo's presense
if use x86; then
echo > ${S}/lilo-config/configure.in.in
make -f admin/Makefile.common
fi
export DO_NOT_COMPILE="${DO_NOT_COMPILE} ksysv"
kde_src_compile
}
# TODO: add nis support
|