jer 15/02/13 20:53:19 Modified: ChangeLog Added: httping-2.4.ebuild Log: Version bump. (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.124 net-analyzer/httping/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.124&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.124&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?r1=1.123&r2=1.124 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v retrieving revision 1.123 retrieving revision 1.124 diff -u -r1.123 -r1.124 --- ChangeLog 11 May 2014 16:58:39 -0000 1.123 +++ ChangeLog 13 Feb 2015 20:53:19 -0000 1.124 @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/httping -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.123 2014/05/11 16:58:39 jer Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.124 2015/02/13 20:53:19 jer Exp $ + +*httping-2.4 (13 Feb 2015) + + 13 Feb 2015; Jeroen Roovers <j...@gentoo.org> +httping-2.4.ebuild: + Version bump. 11 May 2014; Jeroen Roovers <j...@gentoo.org> -httping-2.3.3.ebuild: Old. 1.1 net-analyzer/httping/httping-2.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.4.ebuild?rev=1.1&content-type=text/plain Index: httping-2.4.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.4.ebuild,v 1.1 2015/02/13 20:53:19 jer Exp $ EAPI=5 inherit eutils toolchain-funcs DESCRIPTION="http protocol ping-like program" HOMEPAGE="http://www.vanheusden.com/httping/" SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="debug fftw linguas_nl ncurses ssl tfo" RDEPEND=" fftw? ( sci-libs/fftw:3.0 ) ncurses? ( >=sys-libs/ncurses-5 ) ssl? ( dev-libs/openssl ) " DEPEND=" ${RDEPEND} ncurses? ( virtual/pkgconfig ) " # This would bring in test? ( dev-util/cppcheck ) but unlike # upstream we should only care about compile/run time testing RESTRICT="test" src_prepare() { epatch "${FILESDIR}"/${PN}-2.2.1-flags.patch # doman does not get PN-LANG.CAT so we move things around and then point at # it later if use linguas_nl; then mkdir nl || die mv httping-nl.1 nl/httping.1 || die fi } src_configure() { # not an autotools script echo > makefile.inc || die use ncurses && LDFLAGS+=" $( $( tc-getPKG_CONFIG ) --libs ncurses )" } src_compile() { emake \ CC="$(tc-getCC)" \ FW=$(usex fftw) \ DEBUG=$(usex debug) \ NC=$(usex ncurses) \ SSL=$(usex ssl) \ TFO=$(usex tfo) } src_install() { dobin httping doman httping.1 use linguas_nl && doman -i18n=nl nl/httping.1 }