diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-01-06 00:11:36 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-01-06 00:11:36 +0000 |
commit | 961c535043b975bbf21b4154800b2ffcc8fff709 (patch) | |
tree | d69ee91bc57e0dcb2b87331f48e4ad35f0172fe3 /net-libs | |
parent | version bump (diff) | |
download | gentoo-2-961c535043b975bbf21b4154800b2ffcc8fff709.tar.gz gentoo-2-961c535043b975bbf21b4154800b2ffcc8fff709.tar.bz2 gentoo-2-961c535043b975bbf21b4154800b2ffcc8fff709.zip |
Proxy commit for Johan Bergström. Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/liboping/ChangeLog | 9 | ||||
-rw-r--r-- | net-libs/liboping/liboping-1.8.0.ebuild | 43 |
2 files changed, 50 insertions, 2 deletions
diff --git a/net-libs/liboping/ChangeLog b/net-libs/liboping/ChangeLog index 9ac9b1f3138a..78eb8a2f9053 100644 --- a/net-libs/liboping/ChangeLog +++ b/net-libs/liboping/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/liboping -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/liboping/ChangeLog,v 1.14 2014/10/10 01:47:32 dlan Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/liboping/ChangeLog,v 1.15 2015/01/06 00:11:36 mrueg Exp $ + +*liboping-1.8.0 (06 Jan 2015) + + 06 Jan 2015; Manuel Rüger <mrueg@gentoo.org> +liboping-1.8.0.ebuild: + Proxy commit for Johan Bergström. Version bump. *liboping-1.7.0 (10 Oct 2014) diff --git a/net-libs/liboping/liboping-1.8.0.ebuild b/net-libs/liboping/liboping-1.8.0.ebuild new file mode 100644 index 000000000000..742bd7f76cb1 --- /dev/null +++ b/net-libs/liboping/liboping-1.8.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/liboping/liboping-1.8.0.ebuild,v 1.1 2015/01/06 00:11:36 mrueg Exp $ + +EAPI=5 + +inherit base autotools + +DESCRIPTION="C library and ncurses based program to generate ICMP echo requests and ping multiple hosts at once" +HOMEPAGE="http://noping.cc/" +SRC_URI="http://noping.cc/files/${P}.tar.bz2" + +LICENSE="LGPL-2.1 GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="perl" + +DEPEND=" + sys-libs/ncurses + perl? ( dev-lang/perl ) +" +RDEPEND=${DEPEND} + +PATCHES=( "${FILESDIR}/${PN}-1.6.2-nouidmagic.patch" ) + +src_prepare() { + base_src_prepare + eautoreconf +} + +src_configure() { + econf \ + $(use_with perl perl-bindings INSTALLDIRS=vendor) \ + --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die + + fperms u+s,og-r /usr/bin/oping + fperms u+s,og-r /usr/bin/noping +} |