diff options
author | Johannes Huber <johu@gentoo.org> | 2012-02-02 13:16:24 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-02-02 13:16:24 +0000 |
commit | cd6a6d7c511c8cc1ee4c13442d6b51874d10ef3c (patch) | |
tree | e91b19564ab779665196965096fe10f159bbcef9 /x11-misc/qps | |
parent | Update location of upstream repository. (diff) | |
download | gentoo-2-cd6a6d7c511c8cc1ee4c13442d6b51874d10ef3c.tar.gz gentoo-2-cd6a6d7c511c8cc1ee4c13442d6b51874d10ef3c.tar.bz2 gentoo-2-cd6a6d7c511c8cc1ee4c13442d6b51874d10ef3c.zip |
Version bump wrt bug #401775. Fixes bug #369317. Thanks to kensington <gentoo@scribeofthenile.com>.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/qps')
-rw-r--r-- | x11-misc/qps/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/qps/qps-1.10.12.1.ebuild | 6 | ||||
-rw-r--r-- | x11-misc/qps/qps-1.10.16.ebuild | 34 |
3 files changed, 46 insertions, 5 deletions
diff --git a/x11-misc/qps/ChangeLog b/x11-misc/qps/ChangeLog index 89e8f0c1c0c0..7eeeec427e5d 100644 --- a/x11-misc/qps/ChangeLog +++ b/x11-misc/qps/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-misc/qps -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/qps/ChangeLog,v 1.1 2009/12/17 23:13:35 spatz Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/qps/ChangeLog,v 1.2 2012/02/02 13:16:24 johu Exp $ + +*qps-1.10.16 (02 Feb 2012) + + 02 Feb 2012; Johannes Huber <johu@gentoo.org> +qps-1.10.16.ebuild, + qps-1.10.12.1.ebuild: + Version bump wrt bug #401775. Fixes bug #369317. Thanks to kensington + <gentoo@scribeofthenile.com>. *qps-1.10.12.1 (17 Dec 2009) diff --git a/x11-misc/qps/qps-1.10.12.1.ebuild b/x11-misc/qps/qps-1.10.12.1.ebuild index 875acc0e4ced..c3b6ca6cd554 100644 --- a/x11-misc/qps/qps-1.10.12.1.ebuild +++ b/x11-misc/qps/qps-1.10.12.1.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/qps/qps-1.10.12.1.ebuild,v 1.1 2009/12/17 23:13:35 spatz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/qps/qps-1.10.12.1.ebuild,v 1.2 2012/02/02 13:16:24 johu Exp $ EAPI="2" inherit qt4-r2 DESCRIPTION="Visual process manager - Qt version of ps/top" -HOMEPAGE="http://qps.kldp.net/" +HOMEPAGE="http://qps.kldp.net/projects/qps/" SRC_URI="http://kldp.net/frs/download.php/5394/${P}.tar.bz2" LICENSE="GPL-2" diff --git a/x11-misc/qps/qps-1.10.16.ebuild b/x11-misc/qps/qps-1.10.16.ebuild new file mode 100644 index 000000000000..ef1c7cc704f8 --- /dev/null +++ b/x11-misc/qps/qps-1.10.16.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/qps/qps-1.10.16.ebuild,v 1.1 2012/02/02 13:16:24 johu Exp $ + +EAPI=4 + +inherit eutils qt4-r2 + +DESCRIPTION="Visual process manager - Qt version of ps/top" +HOMEPAGE="http://qps.kldp.net/projects/qps/" +SRC_URI="http://kldp.net/frs/download.php/5963/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND="x11-libs/qt-core:4 + x11-libs/qt-dbus:4 + x11-libs/qt-gui:4" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i -e '/strip/d' ${PN}.pro || die "sed failed" +} + +src_install() { + dobin ${PN} + doman ${PN}.1 + dodoc CHANGES + + newicon icon/icon.xpm ${PN}.xpm + make_desktop_entry ${PN} ${PN} ${PN} "System;" +} |