diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2008-04-03 21:01:30 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2008-04-03 21:01:30 +0000 |
commit | fde0a121e04c1b11f6f3013e68b12b5205b92092 (patch) | |
tree | 0060ce258ab2dfce3463b19fc4e7e12736177460 /kde-base/kdesu | |
parent | Version bump to KDE 4.0.3. This is still not intended for mainstream so DO NO... (diff) | |
download | gentoo-2-fde0a121e04c1b11f6f3013e68b12b5205b92092.tar.gz gentoo-2-fde0a121e04c1b11f6f3013e68b12b5205b92092.tar.bz2 gentoo-2-fde0a121e04c1b11f6f3013e68b12b5205b92092.zip |
Version bump to KDE 4.0.3. This is still not intended for mainstream so DO NOT KEYWORD IT without talking to the KDE herd first.
(Portage version: 2.1.4.4)
Diffstat (limited to 'kde-base/kdesu')
-rw-r--r-- | kde-base/kdesu/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/kdesu/kdesu-4.0.3.ebuild | 24 |
2 files changed, 31 insertions, 1 deletions
diff --git a/kde-base/kdesu/ChangeLog b/kde-base/kdesu/ChangeLog index 313dfdc60f39..0ab667c49504 100644 --- a/kde-base/kdesu/ChangeLog +++ b/kde-base/kdesu/ChangeLog @@ -1,6 +1,12 @@ # 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.82 2008/03/20 16:53:55 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdesu/ChangeLog,v 1.83 2008/04/03 21:01:30 philantrop Exp $ + +*kdesu-4.0.3 (03 Apr 2008) + + 03 Apr 2008; Wulf C. Krueger <philantrop@gentoo.org> +kdesu-4.0.3.ebuild: + Version bump to KDE 4.0.3. This is still not intended for mainstream so DO + NOT KEYWORD IT without talking to the KDE herd first. 20 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> -kdesu-4.0.1.ebuild: Old. diff --git a/kde-base/kdesu/kdesu-4.0.3.ebuild b/kde-base/kdesu/kdesu-4.0.3.ebuild new file mode 100644 index 000000000000..fc0e23cc3c14 --- /dev/null +++ b/kde-base/kdesu/kdesu-4.0.3.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.3.ebuild,v 1.1 2008/04/03 21:01:30 philantrop 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 +} |