diff options
author | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-05-15 23:26:41 +0000 |
---|---|---|
committer | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-05-15 23:26:41 +0000 |
commit | c5bf29b2a995f284f040c6d7708b55e44fceac13 (patch) | |
tree | 2d05fa22e283c66dea4dae351fcecb821107cdc9 /kde-base/kdesu | |
parent | Added KDE 4.0.4 version of kdessh. Thanks to Jorge Manuel B. S. Vicetto. (diff) | |
download | gentoo-2-c5bf29b2a995f284f040c6d7708b55e44fceac13.tar.gz gentoo-2-c5bf29b2a995f284f040c6d7708b55e44fceac13.tar.bz2 gentoo-2-c5bf29b2a995f284f040c6d7708b55e44fceac13.zip |
Added KDE 4.0.4 version of kdesu. Thanks to Jorge Manuel B. S. Vicetto.
(Portage version: 2.1.5)
Diffstat (limited to 'kde-base/kdesu')
-rw-r--r-- | kde-base/kdesu/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kdesu/kdesu-4.0.4.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/kde-base/kdesu/ChangeLog b/kde-base/kdesu/ChangeLog index c3546dbe1424..77c66a88283b 100644 --- a/kde-base/kdesu/ChangeLog +++ b/kde-base/kdesu/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdesu # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdesu/ChangeLog,v 1.87 2008/05/15 10:09:46 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdesu/ChangeLog,v 1.88 2008/05/15 23:26:41 ingmar Exp $ + +*kdesu-4.0.4 (15 May 2008) + + 15 May 2008; Ingmar Vanhassel <ingmar@gentoo.org> +kdesu-4.0.4.ebuild: + Added KDE 4.0.4 version of kdesu. Thanks to Jorge Manuel B. S. Vicetto. 15 May 2008; Markus Rothe <corsair@gentoo.org> kdesu-3.5.9.ebuild: Stable on ppc64; bug #221063 diff --git a/kde-base/kdesu/kdesu-4.0.4.ebuild b/kde-base/kdesu/kdesu-4.0.4.ebuild new file mode 100644 index 000000000000..8b33fe44275b --- /dev/null +++ b/kde-base/kdesu/kdesu-4.0.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdesu/kdesu-4.0.4.ebuild,v 1.1 2008/05/15 23:26:41 ingmar Exp $ + +EAPI="1" + +KMNAME=kdebase-runtime +inherit kde4-meta + +# FIXME: Is default command ( su/sudo ) still configurable, +# if not, USE-flag ? +DESCRIPTION="KDE: gui for su(1)" +KEYWORDS="~amd64 ~x86" +IUSE="debug htmlhandbook" + +src_compile() { + # Upstream moved kdesu to libexec first, then decided to move it back + # to /${PREFIX}/bin/, so I'm doing that now already. + sed -e '/kdesu_executable/s:LIBEXEC_INSTALL_DIR:BIN_INSTALL_DIR:' \ + -i "${S}"/kdesu/kdesu/CMakeLists.txt || \ + die "Moving kdesu from libexec to bin failed." + + kde4-meta_src_compile +} |