diff options
author | 2007-01-16 20:25:55 +0000 | |
---|---|---|
committer | 2007-01-16 20:25:55 +0000 | |
commit | 34d1ec2dc89d310e3597ccc0735bc49eafd830af (patch) | |
tree | b9baac790691ae18d16775845760c2a49440f357 /kde-base/kdeutils/kdeutils-3.5.6.ebuild | |
parent | Bump to 3.5.6 (prerelease). (diff) | |
download | gentoo-2-34d1ec2dc89d310e3597ccc0735bc49eafd830af.tar.gz gentoo-2-34d1ec2dc89d310e3597ccc0735bc49eafd830af.tar.bz2 gentoo-2-34d1ec2dc89d310e3597ccc0735bc49eafd830af.zip |
Bump to 3.5.6 (prerelease).
(Portage version: 2.1.2)
Diffstat (limited to 'kde-base/kdeutils/kdeutils-3.5.6.ebuild')
-rw-r--r-- | kde-base/kdeutils/kdeutils-3.5.6.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/kde-base/kdeutils/kdeutils-3.5.6.ebuild b/kde-base/kdeutils/kdeutils-3.5.6.ebuild new file mode 100644 index 000000000000..016bb6fdbdd7 --- /dev/null +++ b/kde-base/kdeutils/kdeutils-3.5.6.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeutils/kdeutils-3.5.6.ebuild,v 1.1 2007/01/16 20:25:55 flameeyes Exp $ + +inherit kde-dist eutils + +SRC_URI="${SRC_URI} + mirror://gentoo/kdeutils-3.5-patchset-01.tar.bz2" + +DESCRIPTION="KDE utilities." + +KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86" +IUSE="crypt kdehiddenvisibility pbbuttonsd snmp" + +BOTH_DEPEND="~kde-base/kdebase-${PV} + snmp? ( net-analyzer/net-snmp ) + pbbuttonsd? ( app-laptop/pbbuttonsd ) + dev-lang/python + dev-libs/gmp + || ( x11-libs/libXtst <virtual/x11-7 )" + +RDEPEND="${BOTH_DEPEND} + crypt? ( app-crypt/gnupg ) + !x11-misc/superkaramba" + +DEPEND="${BOTH_DEPEND} + || ( ( + x11-libs/libX11 + x11-proto/xproto + ) <virtual/x11-7 ) + virtual/os-headers" + +src_unpack() { + kde_src_unpack + sed -i -e "s:Hidden=true:Hidden=false:" ksim/ksim.desktop || die "sed failed" +} + +src_compile() { + local myconf="$(use_with snmp) $(use_with pbbuttonsd powerbook) + --without-xmms" + + use crypt || export DO_NOT_COMPILE="${DO_NOT_COMPILE} kgpg" + + kde_src_compile +} + +src_install() { + kde_src_install + # see bug 144731 + rm ${D}${KDEDIR}/share/applications/kde/ksim.desktop +} + |