diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-01-19 21:18:58 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-01-19 21:18:58 +0000 |
commit | 16848dfb4df74a2ae03b867da2127f1504f65168 (patch) | |
tree | 6b13f97932bffbaf2e3d94602f90a9e237946b30 /x11-plugins/wmping | |
parent | Point to the KDE 4 guide in my KDE 4 mask message. (diff) | |
download | gentoo-2-16848dfb4df74a2ae03b867da2127f1504f65168.tar.gz gentoo-2-16848dfb4df74a2ae03b867da2127f1504f65168.tar.bz2 gentoo-2-16848dfb4df74a2ae03b867da2127f1504f65168.zip |
USE suid is there only to warn users, but it's basically useless with it disabled. Enable it by default using EAPI=1.
(Portage version: 2.1.4)
Diffstat (limited to 'x11-plugins/wmping')
-rw-r--r-- | x11-plugins/wmping/ChangeLog | 6 | ||||
-rw-r--r-- | x11-plugins/wmping/wmping-0.2.1.ebuild | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/x11-plugins/wmping/ChangeLog b/x11-plugins/wmping/ChangeLog index 56be9543b737..cd83448d8b18 100644 --- a/x11-plugins/wmping/ChangeLog +++ b/x11-plugins/wmping/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-plugins/wmping # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmping/ChangeLog,v 1.1 2008/01/14 18:27:42 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmping/ChangeLog,v 1.2 2008/01/19 21:18:58 drac Exp $ + + 19 Jan 2008; Samuli Suominen <drac@gentoo.org> wmping-0.2.1.ebuild: + USE suid is there only to warn users, but it's basically useless with it + disabled. Enable it by default using EAPI=1. *wmping-0.2.1 (14 Jan 2008) diff --git a/x11-plugins/wmping/wmping-0.2.1.ebuild b/x11-plugins/wmping/wmping-0.2.1.ebuild index b0188981625b..0d63f2b76f10 100644 --- a/x11-plugins/wmping/wmping-0.2.1.ebuild +++ b/x11-plugins/wmping/wmping-0.2.1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmping/wmping-0.2.1.ebuild,v 1.2 2008/01/14 18:34:31 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmping/wmping-0.2.1.ebuild,v 1.3 2008/01/19 21:18:58 drac Exp $ + +EAPI=1 DESCRIPTION="a simple host status monitoring dockapp." HOMEPAGE="http://sourceforge.net/projects/wmping" @@ -9,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" -IUSE="suid" +IUSE="+suid" RDEPEND="x11-libs/libX11 x11-libs/libXext @@ -32,5 +34,5 @@ src_install() { } pkg_postinst() { - use suid || ewarn "warning, ${PN} needs to be executed root for functionality." + use suid || ewarn "warning, ${PN} needs to be executed as root." } |