diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-06-02 20:25:04 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-06-02 20:25:04 +0000 |
commit | 7b9d37cf6cd0dae42e41174900cee4db67b4c2cc (patch) | |
tree | 926c343225ecf81866ba5b1ec719ce5abf7a41b3 /kde-base/kdeutils | |
parent | ppc stable, bug #134951 (diff) | |
download | historical-7b9d37cf6cd0dae42e41174900cee4db67b4c2cc.tar.gz historical-7b9d37cf6cd0dae42e41174900cee4db67b4c2cc.tar.bz2 historical-7b9d37cf6cd0dae42e41174900cee4db67b4c2cc.zip |
version bump
Package-Manager: portage-2.1_rc3-r5
Diffstat (limited to 'kde-base/kdeutils')
-rw-r--r-- | kde-base/kdeutils/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kdeutils/files/digest-kdeutils-3.5.3 | 3 | ||||
-rw-r--r-- | kde-base/kdeutils/kdeutils-3.5.3.ebuild | 46 |
3 files changed, 55 insertions, 1 deletions
diff --git a/kde-base/kdeutils/ChangeLog b/kde-base/kdeutils/ChangeLog index ab468c4d3b80..25a815623eb8 100644 --- a/kde-base/kdeutils/ChangeLog +++ b/kde-base/kdeutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdeutils # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeutils/ChangeLog,v 1.166 2006/06/01 10:50:17 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeutils/ChangeLog,v 1.167 2006/06/02 20:21:43 genstef Exp $ + +*kdeutils-3.5.3 (02 Jun 2006) + + 02 Jun 2006; Stefan Schweizer <genstef@gentoo.org> +kdeutils-3.5.3.ebuild: + version bump 01 Jun 2006; Thomas Cort <tcort@gentoo.org> kdeutils-3.5.2.ebuild: Stable on alpha wrt Bug #132213. diff --git a/kde-base/kdeutils/files/digest-kdeutils-3.5.3 b/kde-base/kdeutils/files/digest-kdeutils-3.5.3 new file mode 100644 index 000000000000..7da48faa0e9b --- /dev/null +++ b/kde-base/kdeutils/files/digest-kdeutils-3.5.3 @@ -0,0 +1,3 @@ +MD5 b3d792c21e9a72bf8a82c5756fcd742d kdeutils-3.5.3.tar.bz2 2979916 +RMD160 3724e3ad753572353ade57d6fc4a7e0d76aeddfa kdeutils-3.5.3.tar.bz2 2979916 +SHA256 713664e79e30ae7b2096ca4bb58aa554f10e759eb55ad1bc9ef917bea7057e2b kdeutils-3.5.3.tar.bz2 2979916 diff --git a/kde-base/kdeutils/kdeutils-3.5.3.ebuild b/kde-base/kdeutils/kdeutils-3.5.3.ebuild new file mode 100644 index 000000000000..b655b3a3d57c --- /dev/null +++ b/kde-base/kdeutils/kdeutils-3.5.3.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeutils/kdeutils-3.5.3.ebuild,v 1.1 2006/06/02 20:21:43 genstef Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE utilities" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="crypt snmp pbbuttonsd xmms" + +BOTH_DEPEND="~kde-base/kdebase-${PV} + snmp? ( net-analyzer/net-snmp ) + pbbuttonsd? ( app-laptop/pbbuttonsd ) + dev-lang/python + xmms? ( media-sound/xmms ) + dev-libs/gmp + || ( x11-libs/libXtst virtual/x11 )" + +RDEPEND="${BOTH_DEPEND} + crypt? ( app-crypt/gnupg ) + !x11-misc/superkaramba" + +DEPEND="${BOTH_DEPEND} + || ( ( + x11-libs/libX11 + x11-proto/xextproto + x11-proto/xproto + ) virtual/x11 ) + virtual/os-headers" + +src_unpack() { + kde_src_unpack + + # Fix output of klaptopdaemon (kde bug 103437). + epatch "${FILESDIR}/kdeutils-3.4.3-klaptopdaemon.patch" +} + +src_compile() { + local myconf="$(use_with snmp) $(use_with pbbuttonsd powerbook) + $(use_with xmms)" + + use crypt || export DO_NOT_COMPILE="${DO_NOT_COMPILE} kgpg" + + kde_src_compile +} |