summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-07-26 08:57:12 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-07-26 08:57:12 +0000
commit6ab93cb02b2ab05f881c369248751881513a8911 (patch)
treed36fbe6a5b68dd5555ea8d66981525c125d13ec1 /kde-base
parentBump to 3.5.4 (pre-release). (diff)
downloadgentoo-2-6ab93cb02b2ab05f881c369248751881513a8911.tar.gz
gentoo-2-6ab93cb02b2ab05f881c369248751881513a8911.tar.bz2
gentoo-2-6ab93cb02b2ab05f881c369248751881513a8911.zip
Bump to 3.5.4 (pre-release).
(Portage version: 2.1.1_pre3-r5)
Diffstat (limited to 'kde-base')
-rw-r--r--kde-base/kdeadmin/ChangeLog7
-rw-r--r--kde-base/kdeadmin/files/digest-kdeadmin-3.5.43
-rw-r--r--kde-base/kdeadmin/kdeadmin-3.5.4.ebuild33
3 files changed, 42 insertions, 1 deletions
diff --git a/kde-base/kdeadmin/ChangeLog b/kde-base/kdeadmin/ChangeLog
index 1a4561f424aa..fccfab704584 100644
--- a/kde-base/kdeadmin/ChangeLog
+++ b/kde-base/kdeadmin/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for kde-base/kdeadmin
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeadmin/ChangeLog,v 1.168 2006/07/25 09:58:48 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeadmin/ChangeLog,v 1.169 2006/07/26 08:57:12 flameeyes Exp $
+
+*kdeadmin-3.5.4 (26 Jul 2006)
+
+ 26 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +kdeadmin-3.5.4.ebuild:
+ Bump to 3.5.4 (pre-release).
25 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> -kdeadmin-3.3.2.ebuild:
Drop 3.3 versions.
diff --git a/kde-base/kdeadmin/files/digest-kdeadmin-3.5.4 b/kde-base/kdeadmin/files/digest-kdeadmin-3.5.4
new file mode 100644
index 000000000000..8954a8b4b7ca
--- /dev/null
+++ b/kde-base/kdeadmin/files/digest-kdeadmin-3.5.4
@@ -0,0 +1,3 @@
+MD5 579a2e3e8e05cf0851a88def57fcc0a3 kdeadmin-3.5.4.tar.bz2 2114589
+RMD160 1175a527dc53ebf93157c9188ab0fb67e6e3c994 kdeadmin-3.5.4.tar.bz2 2114589
+SHA256 0d64dea158fb2061d091e0b68f4559f2737e626f206365812491bf804454d264 kdeadmin-3.5.4.tar.bz2 2114589
diff --git a/kde-base/kdeadmin/kdeadmin-3.5.4.ebuild b/kde-base/kdeadmin/kdeadmin-3.5.4.ebuild
new file mode 100644
index 000000000000..d87de481e3e1
--- /dev/null
+++ b/kde-base/kdeadmin/kdeadmin-3.5.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeadmin/kdeadmin-3.5.4.ebuild,v 1.1 2006/07/26 08:57:12 flameeyes Exp $
+
+inherit kde-dist
+
+DESCRIPTION="KDE administration tools (user manager, etc.)"
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+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
+}