diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2007-05-22 21:47:05 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2007-05-22 21:47:05 +0000 |
commit | f6f5a1205e0d55c7656001e4bb87dee47ca08e39 (patch) | |
tree | 18576aad1c62fd899925f47c90ff97d1e2abdf69 /kde-base/kdeadmin | |
parent | Version bump. (diff) | |
download | gentoo-2-f6f5a1205e0d55c7656001e4bb87dee47ca08e39.tar.gz gentoo-2-f6f5a1205e0d55c7656001e4bb87dee47ca08e39.tar.bz2 gentoo-2-f6f5a1205e0d55c7656001e4bb87dee47ca08e39.zip |
Version bump.
(Portage version: 2.1.2.7)
Diffstat (limited to 'kde-base/kdeadmin')
-rw-r--r-- | kde-base/kdeadmin/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kdeadmin/files/digest-kdeadmin-3.5.7 | 3 | ||||
-rw-r--r-- | kde-base/kdeadmin/kdeadmin-3.5.7.ebuild | 33 |
3 files changed, 42 insertions, 1 deletions
diff --git a/kde-base/kdeadmin/ChangeLog b/kde-base/kdeadmin/ChangeLog index 25a2d088b6ec..0c75fe041bae 100644 --- a/kde-base/kdeadmin/ChangeLog +++ b/kde-base/kdeadmin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdeadmin # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeadmin/ChangeLog,v 1.188 2007/02/04 17:45:09 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeadmin/ChangeLog,v 1.189 2007/05/22 21:47:05 carlo Exp $ + +*kdeadmin-3.5.7 (22 May 2007) + + 22 May 2007; Carsten Lohrke <carlo@gentoo.org> +kdeadmin-3.5.7.ebuild: + Version bump. 04 Feb 2007; Jeroen Roovers <jer@gentoo.org> kdeadmin-3.5.6.ebuild: Marked ~hppa. diff --git a/kde-base/kdeadmin/files/digest-kdeadmin-3.5.7 b/kde-base/kdeadmin/files/digest-kdeadmin-3.5.7 new file mode 100644 index 000000000000..ccec87782cc8 --- /dev/null +++ b/kde-base/kdeadmin/files/digest-kdeadmin-3.5.7 @@ -0,0 +1,3 @@ +MD5 fdf4e7e230d9b5688d72f0e1a8039e12 kdeadmin-3.5.7.tar.bz2 2120666 +RMD160 c2f06b4297be4e2c73a36640b8bd7792474a96d2 kdeadmin-3.5.7.tar.bz2 2120666 +SHA256 8eac329d1a996fe39da777ba286351585a429050b0a2718711bd3789fd3f6db1 kdeadmin-3.5.7.tar.bz2 2120666 diff --git a/kde-base/kdeadmin/kdeadmin-3.5.7.ebuild b/kde-base/kdeadmin/kdeadmin-3.5.7.ebuild new file mode 100644 index 000000000000..fc01ce981924 --- /dev/null +++ b/kde-base/kdeadmin/kdeadmin-3.5.7.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeadmin/kdeadmin-3.5.7.ebuild,v 1.1 2007/05/22 21:47:05 carlo Exp $ + +inherit kde-dist + +DESCRIPTION="KDE administration tools (user manager, etc.)" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="kdehiddenvisibility" + +DEPEND="~kde-base/kdebase-${PV}" +RDEPEND="${DEPEND} + virtual/cron" + +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 + + local myconf="--with-shadow" + + export DO_NOT_COMPILE="${DO_NOT_COMPILE} ksysv" + + kde_src_compile +} |