diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-08-20 05:33:25 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-08-20 05:33:25 +0000 |
commit | b1cb29b24a985bd6b548cc7994863d46cf7c526b (patch) | |
tree | a77284c8f565fa11bb1ddbf475ecbd6234a1e9af /net-analyzer/fping | |
parent | Bug #431456, #418019: version bump. Bug #429814: ensure compile with no /usr/... (diff) | |
download | gentoo-2-b1cb29b24a985bd6b548cc7994863d46cf7c526b.tar.gz gentoo-2-b1cb29b24a985bd6b548cc7994863d46cf7c526b.tar.bz2 gentoo-2-b1cb29b24a985bd6b548cc7994863d46cf7c526b.zip |
Version bump. Add suid use flag.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/fping')
-rw-r--r-- | net-analyzer/fping/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/fping/fping-3.3.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/net-analyzer/fping/ChangeLog b/net-analyzer/fping/ChangeLog index af2320c0fd47..a3186c87dab8 100644 --- a/net-analyzer/fping/ChangeLog +++ b/net-analyzer/fping/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/fping # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/ChangeLog,v 1.50 2012/05/29 20:03:14 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/ChangeLog,v 1.51 2012/08/20 05:33:25 radhermit Exp $ + +*fping-3.3 (20 Aug 2012) + + 20 Aug 2012; Tim Harder <radhermit@gentoo.org> +fping-3.3.ebuild: + Version bump. Add suid use flag. 29 May 2012; Tim Harder <radhermit@gentoo.org> +fping-2.4_beta2_p161-r1.ebuild, +files/fping-2.4_beta2_p161-min-time.patch: diff --git a/net-analyzer/fping/fping-3.3.ebuild b/net-analyzer/fping/fping-3.3.ebuild new file mode 100644 index 000000000000..53b165459abf --- /dev/null +++ b/net-analyzer/fping/fping-3.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-3.3.ebuild,v 1.1 2012/08/20 05:33:25 radhermit Exp $ + +EAPI=4 + +DESCRIPTION="A utility to ping multiple hosts at once" +HOMEPAGE="http://fping.org/" +SRC_URI="http://fping.org/dist/${P}.tar.gz" + +LICENSE="fping" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="ipv6 suid" + +src_configure() { + econf $(use_enable ipv6) +} + +src_install() { + default + + if use suid ; then + fperms u+s /usr/sbin/fping + use ipv6 && fperms u+s /usr/sbin/fping6 + fi +} |