public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/isic: ChangeLog isic-0.07-r1.ebuild
@ 2011-06-11 16:41 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2011-06-11 16:41 UTC (permalink / raw
  To: gentoo-commits

jer         11/06/11 16:41:16

  Modified:             ChangeLog
  Added:                isic-0.07-r1.ebuild
  Log:
  Fix build failure (bug #351285). Install man page in the appropriate place (bug #247953). Move econf to src_configure(). Use emake instead of make. Remove unused inherit.
  
  (Portage version: 2.2.0_alpha39/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 net-analyzer/isic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	6 Sep 2007 17:25:44 -0000	1.14
+++ ChangeLog	11 Jun 2011 16:41:16 -0000	1.15
@@ -1,6 +1,13 @@
 # ChangeLog for net-analyzer/isic
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.14 2007/09/06 17:25:44 jokey Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.15 2011/06/11 16:41:16 jer Exp $
+
+*isic-0.07-r1 (11 Jun 2011)
+
+  11 Jun 2011; Jeroen Roovers <jer@gentoo.org> +isic-0.07-r1.ebuild:
+  Fix build failure (bug #351285). Install man page in the appropriate place
+  (bug #247953). Move econf to src_configure(). Use emake instead of make.
+  Remove unused inherit.
 
   06 Sep 2007; Markus Ullmann <jokey@gentoo.org>
   -files/isic-0.06-gcc4.patch, -files/isic-0.06-makefile.patch,



1.1                  net-analyzer/isic/isic-0.07-r1.ebuild

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

Index: isic-0.07-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.1 2011/06/11 16:41:16 jer Exp $

EAPI="3"

DESCRIPTION="IP Stack Integrity Checker"
HOMEPAGE="http://isic.sourceforge.net/"
SRC_URI="mirror://sourceforge/isic/${P}.tgz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

DEPEND="net-libs/libnet:1.1"
RDEPEND="${DEPEND}"

src_prepare() {
	# Add two missing includes
	echo "#include <netinet/udp.h>" >> isic.h || die
	echo "#include <netinet/tcp.h>" >> isic.h || die

	# Install man pages in /usr/share/man
	sed -i Makefile.in -e 's|/man/man1|/share&|g' || die
}

src_configure() {
	# Build system does not know about DESTDIR
	econf --prefix="${D}/usr" --exec_prefix="${D}/usr"
}

src_install() {
	# Build system does not know about DESTDIR
	emake install || die "make install failed"
	dodoc README
}






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/isic: ChangeLog isic-0.07-r1.ebuild
@ 2011-12-14  8:57 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-12-14  8:57 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/12/14 08:57:19

  Modified:             ChangeLog isic-0.07-r1.ebuild
  Log:
  x86 stable wrt bug #393895
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.17                 net-analyzer/isic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	20 Aug 2011 20:17:06 -0000	1.16
+++ ChangeLog	14 Dec 2011 08:57:19 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/isic
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.16 2011/08/20 20:17:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.17 2011/12/14 08:57:19 phajdan.jr Exp $
+
+  14 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> isic-0.07-r1.ebuild:
+  x86 stable wrt bug #393895
 
   20 Aug 2011; Jeroen Roovers <jer@gentoo.org> metadata.xml:
   Remove useless maintainer tag.



1.2                  net-analyzer/isic/isic-0.07-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild?r1=1.1&r2=1.2

Index: isic-0.07-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- isic-0.07-r1.ebuild	11 Jun 2011 16:41:16 -0000	1.1
+++ isic-0.07-r1.ebuild	14 Dec 2011 08:57:19 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.1 2011/06/11 16:41:16 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.2 2011/12/14 08:57:19 phajdan.jr Exp $
 
 EAPI="3"
 
@@ -10,7 +10,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE=""
 
 DEPEND="net-libs/libnet:1.1"






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/isic: ChangeLog isic-0.07-r1.ebuild
@ 2011-12-19 23:50 Tim Harder (radhermit)
  0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder (radhermit) @ 2011-12-19 23:50 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/12/19 23:50:17

  Modified:             ChangeLog isic-0.07-r1.ebuild
  Log:
  Respect CC.
  
  (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 net-analyzer/isic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	19 Dec 2011 18:37:24 -0000	1.18
+++ ChangeLog	19 Dec 2011 23:50:17 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/isic
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.18 2011/12/19 18:37:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.19 2011/12/19 23:50:17 radhermit Exp $
+
+  19 Dec 2011; Tim Harder <radhermit@gentoo.org> isic-0.07-r1.ebuild:
+  Respect CC.
 
   19 Dec 2011; Agostino Sarubbo <ago@gentoo.org> isic-0.07-r1.ebuild:
   Stable for AMD64, wrt bug #393895



1.4                  net-analyzer/isic/isic-0.07-r1.ebuild

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

Index: isic-0.07-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- isic-0.07-r1.ebuild	19 Dec 2011 18:37:24 -0000	1.3
+++ isic-0.07-r1.ebuild	19 Dec 2011 23:50:17 -0000	1.4
@@ -1,9 +1,11 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.3 2011/12/19 18:37:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.4 2011/12/19 23:50:17 radhermit Exp $
 
 EAPI="3"
 
+inherit toolchain-funcs
+
 DESCRIPTION="IP Stack Integrity Checker"
 HOMEPAGE="http://isic.sourceforge.net/"
 SRC_URI="mirror://sourceforge/isic/${P}.tgz"
@@ -23,6 +25,8 @@
 
 	# Install man pages in /usr/share/man
 	sed -i Makefile.in -e 's|/man/man1|/share&|g' || die
+
+	tc-export CC
 }
 
 src_configure() {






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/isic: ChangeLog isic-0.07-r1.ebuild
@ 2012-09-26 10:42 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 4+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-09-26 10:42 UTC (permalink / raw
  To: gentoo-commits

blueness    12/09/26 10:42:15

  Modified:             ChangeLog isic-0.07-r1.ebuild
  Log:
  stable ppc, bug #393895
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 net-analyzer/isic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	19 Dec 2011 23:51:47 -0000	1.20
+++ ChangeLog	26 Sep 2012 10:42:15 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/isic
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.20 2011/12/19 23:51:47 radhermit Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.21 2012/09/26 10:42:15 blueness Exp $
+
+  26 Sep 2012; Anthony G. Basile <blueness@gentoo.org> isic-0.07-r1.ebuild:
+  stable ppc, bug #393895
 
   19 Dec 2011; Tim Harder <radhermit@gentoo.org> -isic-0.07.ebuild:
   Remove old.



1.5                  net-analyzer/isic/isic-0.07-r1.ebuild

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

Index: isic-0.07-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- isic-0.07-r1.ebuild	19 Dec 2011 23:50:17 -0000	1.4
+++ isic-0.07-r1.ebuild	26 Sep 2012 10:42:15 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.4 2011/12/19 23:50:17 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.5 2012/09/26 10:42:15 blueness Exp $
 
 EAPI="3"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE=""
 
 DEPEND="net-libs/libnet:1.1"





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-09-26 10:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-11 16:41 [gentoo-commits] gentoo-x86 commit in net-analyzer/isic: ChangeLog isic-0.07-r1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-14  8:57 PaweA Hajdan (phajdan.jr)
2011-12-19 23:50 Tim Harder (radhermit)
2012-09-26 10:42 Anthony G. Basile (blueness)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox