jer         14/07/12 14:29:33

  Modified:             hunt-1.5-r1.ebuild ChangeLog
  Added:                hunt-1.5-r2.ebuild
  Log:
  EAPI bump. Fix missing include, move log2 function to its own namespace, 
convert sed scripts to patch.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  Changes    Path
1.4                  net-analyzer/hunt/hunt-1.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/hunt-1.5-r1.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/hunt-1.5-r1.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/hunt-1.5-r1.ebuild?r1=1.3&r2=1.4

Index: hunt-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/hunt/hunt-1.5-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hunt-1.5-r1.ebuild  15 Jan 2012 15:37:03 -0000      1.3
+++ hunt-1.5-r1.ebuild  12 Jul 2014 14:29:33 -0000      1.4
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hunt/hunt-1.5-r1.ebuild,v 1.3 
2012/01/15 15:37:03 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hunt/hunt-1.5-r1.ebuild,v 1.4 
2014/07/12 14:29:33 jer Exp $
 
-EAPI="2"
+EAPI=5
 
 inherit toolchain-funcs
 
@@ -13,20 +13,18 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
 
 src_prepare() {
-cp -av Makefile{,.orig}
        sed -i Makefile \
-               -e 's:^CFLAGS=:CFLAGS += -I.:g' \
+               -e 's:^CFLAGS=:CFLAGS += -I. :g' \
                -e '/^LDFLAGS=/d' \
                -e 's:${LDFLAGS}:$(LDFLAGS):g' \
                -e 's:-O2 -g::' \
-               || die "sed Makefile"
+               || die
 }
 
 src_compile() {
-       emake CC=$(tc-getCC) || die "emake"
+       emake CC=$(tc-getCC)
 }
 
 src_install() {



1.13                 net-analyzer/hunt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/ChangeLog?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/ChangeLog?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/hunt/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   17 Jan 2012 18:21:28 -0000      1.12
+++ ChangeLog   12 Jul 2014 14:29:33 -0000      1.13
@@ -1,6 +1,14 @@
 # ChangeLog for net-analyzer/hunt
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hunt/ChangeLog,v 1.12 
2012/01/17 18:21:28 jer Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hunt/ChangeLog,v 1.13 
2014/07/12 14:29:33 jer Exp $
+
+*hunt-1.5-r2 (12 Jul 2014)
+
+  12 Jul 2014; Jeroen Roovers <j...@gentoo.org> hunt-1.5-r1.ebuild,
+  +hunt-1.5-r2.ebuild, +files/hunt-1.5-exit.patch, +files/hunt-1.5-flags.patch,
+  +files/hunt-1.5-log2.patch:
+  EAPI bump. Fix missing include, move log2 function to its own namespace,
+  convert sed scripts to patch.
 
   17 Jan 2012; Jeroen Roovers <j...@gentoo.org> -hunt-1.5.ebuild:
   Old.



1.1                  net-analyzer/hunt/hunt-1.5-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/hunt-1.5-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hunt/hunt-1.5-r2.ebuild?rev=1.1&content-type=text/plain

Index: hunt-1.5-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hunt/hunt-1.5-r2.ebuild,v 1.1 
2014/07/12 14:29:33 jer Exp $

EAPI=5

inherit eutils toolchain-funcs

DESCRIPTION="tool for checking well known weaknesses in the TCP/IP protocol"
HOMEPAGE="http://lin.fsid.cvut.cz/~kra/index.html";
SRC_URI="http://lin.fsid.cvut.cz/~kra/hunt/${P}.tgz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"

src_prepare() {
        epatch \
                "${FILESDIR}"/${P}-exit.patch \
                "${FILESDIR}"/${P}-flags.patch \
                "${FILESDIR}"/${P}-log2.patch
}

src_compile() {
        emake CC=$(tc-getCC)
}

src_install() {
        dobin hunt
        doman man/hunt.1
        dodoc CHANGES README* TODO tpsetup/transproxy
}




Reply via email to