diff options
Diffstat (limited to 'kde-base/kdeutils')
-rw-r--r-- | kde-base/kdeutils/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/kdeutils/kdeutils-3.5.9.ebuild | 68 |
2 files changed, 75 insertions, 1 deletions
diff --git a/kde-base/kdeutils/ChangeLog b/kde-base/kdeutils/ChangeLog index f8eb240076ae..3d6761e2a231 100644 --- a/kde-base/kdeutils/ChangeLog +++ b/kde-base/kdeutils/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/kdeutils # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeutils/ChangeLog,v 1.226 2008/02/19 02:34:51 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeutils/ChangeLog,v 1.227 2008/02/20 22:56:13 philantrop Exp $ + +*kdeutils-3.5.9 (20 Feb 2008) + + 20 Feb 2008; Wulf C. Krueger <philantrop@gentoo.org> + +kdeutils-3.5.9.ebuild: + Version bump to KDE 3.5.9. 19 Feb 2008; Ingmar Vanhassel <ingmar@gentoo.org> -kdeutils-3.5.5.ebuild, -kdeutils-3.5.6-r1.ebuild: diff --git a/kde-base/kdeutils/kdeutils-3.5.9.ebuild b/kde-base/kdeutils/kdeutils-3.5.9.ebuild new file mode 100644 index 000000000000..4c5ce3df2f19 --- /dev/null +++ b/kde-base/kdeutils/kdeutils-3.5.9.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeutils/kdeutils-3.5.9.ebuild,v 1.1 2008/02/20 22:56:13 philantrop Exp $ + +EAPI="1" +inherit kde-dist eutils + +SRC_URI="${SRC_URI} + mirror://gentoo/kdeutils-3.5-patchset-02.tar.bz2" + +DESCRIPTION="KDE utilities." + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="crypt kdehiddenvisibility pbbuttonsd snmp xscreensaver" + +BOTH_DEPEND="~kde-base/kdebase-${PV} + snmp? ( net-analyzer/net-snmp ) + pbbuttonsd? ( app-laptop/pbbuttonsd ) + dev-lang/python + dev-libs/gmp + x11-libs/libXtst" + +RDEPEND="${BOTH_DEPEND} + crypt? ( app-crypt/gnupg + app-crypt/pinentry )" + +DEPEND="${BOTH_DEPEND} + xscreensaver? ( x11-libs/libXScrnSaver ) + x11-libs/libX11 + x11-proto/xproto + virtual/os-headers" + +PATCHES="${FILESDIR}/superkaramba-3.5.7-network_sensor.patch" +EPATCH_EXCLUDE="klaptopdaemon-3.5-suspend2+xsession-errors.diff + klaptopdaemon-3.5-lock-and-hibernate.diff" + +pkg_setup() { + if use crypt && ! built_with_use app-crypt/pinentry gtk && ! built_with_use app-crypt/pinentry qt3 ; then + eerror "kgpg needs app-crypt/pinentry built with either the gtk or qt3 USE flag." + eerror "Please enable either USE flag and re-install app-crypt/pinentry." + die "app-crypt/pinentry needs to be rebuilt with gtk or qt3 support." + fi + + kde_pkg_setup +} + +src_unpack() { + kde_src_unpack + + # Fix some desktop files + sed -i -e "s:Hidden=true:Hidden=false:" "${S}/ksim/ksim.desktop" \ + || die "sed (ksim) failed" + sed -i -e "s:\(^Type=\)Service:\1Application:" "${S}/kdelirc/irkick/irkick.desktop" \ + || die "sed (irkick) failed" + sed -i -e "s:\(^Init=.*\):X-\1:" "${S}/klaptopdaemon/applnk/laptop.desktop" \ + || die "sed (laptop) failed" +} + +src_compile() { + local myconf="$(use_with snmp) + $(use_with pbbuttonsd powerbook) + $(use_with xscreensaver) + --without-xmms" + + use crypt || export DO_NOT_COMPILE="${DO_NOT_COMPILE} kgpg" + + kde_src_compile +} |