summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2008-07-24 11:35:01 +0000
committerTorsten Veller <tove@gentoo.org>2008-07-24 11:35:01 +0000
commitd1a2bef1dfcfc51baac64fc73da46e6730ad6157 (patch)
tree041f47638e73fd0f10f2e6a261e9e32ceaa1cc9d /dev-perl/Net-RawIP
parentVersion bump (diff)
downloadgentoo-2-d1a2bef1dfcfc51baac64fc73da46e6730ad6157.tar.gz
gentoo-2-d1a2bef1dfcfc51baac64fc73da46e6730ad6157.tar.bz2
gentoo-2-d1a2bef1dfcfc51baac64fc73da46e6730ad6157.zip
Cleanup
(Portage version: 2.2_rc3/cvs/Linux 2.6.25-tuxonice-r6 i686)
Diffstat (limited to 'dev-perl/Net-RawIP')
-rw-r--r--dev-perl/Net-RawIP/ChangeLog6
-rw-r--r--dev-perl/Net-RawIP/Net-RawIP-0.1.ebuild40
-rw-r--r--dev-perl/Net-RawIP/Net-RawIP-0.2.ebuild42
3 files changed, 5 insertions, 83 deletions
diff --git a/dev-perl/Net-RawIP/ChangeLog b/dev-perl/Net-RawIP/ChangeLog
index f5e0b518eb68..fff02d6c0a12 100644
--- a/dev-perl/Net-RawIP/ChangeLog
+++ b/dev-perl/Net-RawIP/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/Net-RawIP
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-RawIP/ChangeLog,v 1.28 2008/07/24 11:33:46 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-RawIP/ChangeLog,v 1.29 2008/07/24 11:35:01 tove Exp $
+
+ 24 Jul 2008; Torsten Veller <tove@gentoo.org> -Net-RawIP-0.1.ebuild,
+ -Net-RawIP-0.2.ebuild:
+ Cleanup
*Net-RawIP-0.23 (24 Jul 2008)
diff --git a/dev-perl/Net-RawIP/Net-RawIP-0.1.ebuild b/dev-perl/Net-RawIP/Net-RawIP-0.1.ebuild
deleted file mode 100644
index c5cc37459dce..000000000000
--- a/dev-perl/Net-RawIP/Net-RawIP-0.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-RawIP/Net-RawIP-0.1.ebuild,v 1.9 2007/01/19 14:56:23 mcummings Exp $
-
-inherit perl-module
-
-IUSE=""
-DESCRIPTION="Perl Net::RawIP - Raw IP packets manipulation Module"
-SRC_URI="mirror://cpan/authors/id/S/SK/SKOLYCHEV/${P}.tar.gz"
-HOMEPAGE="http://search.cpan.org/~skolychev/"
-
-DEPEND="net-libs/libpcap
- >=sys-apps/sed-4
- dev-lang/perl"
-
-SLOT="0"
-LICENSE="Artistic"
-KEYWORDS="x86 amd64 ~sparc ~ppc ~alpha"
-
-src_unpack() {
- unpack ${A}
-
- # This patch makes sure CFLAGS are applied properly instead of
- # being runon additions to the previously defined symbol.
- # Attempts to address the problem in bug 16388 without completely
- # losing CFLAGS. The patch submitted to that bug chose to remove
- # the $ENV{'CFLAGS'}. With the current state of MakeMaker, this
- # would be a perfectly acceptable choice, because the approach
- # taken here ends up with two sets of CFLAGS in the compile line.
- # However, I believe that it may be more prudent in the long run
- # to try to accommodate what I think the original intention of the
- # Makefile was. Perhaps on some system with some (maybe future)
- # version of MakeMaker, this would be the only way to convey
- # CFLAGS. Since duplication of CFLAGS is harmless, I'm going to
- # go with adding the space instead of taking out the $ENV{CFLAGS}.
-
- # Robert Coie <rac@gentoo.org> 2003.05.08
-
- sed -i -e "s/D_IFLIST_'\./D_IFLIST_ '\./" ${S}/Makefile.PL || die "problem fixing makefile"
-}
diff --git a/dev-perl/Net-RawIP/Net-RawIP-0.2.ebuild b/dev-perl/Net-RawIP/Net-RawIP-0.2.ebuild
deleted file mode 100644
index e7abdc20b4ca..000000000000
--- a/dev-perl/Net-RawIP/Net-RawIP-0.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-RawIP/Net-RawIP-0.2.ebuild,v 1.15 2007/07/10 23:33:29 mr_bones_ Exp $
-
-inherit eutils perl-module
-
-IUSE=""
-DESCRIPTION="Perl Net::RawIP - Raw IP packets manipulation Module"
-SRC_URI="mirror://cpan/authors/id/S/SK/SKOLYCHEV/${P}.tar.gz"
-HOMEPAGE="http://search.cpan.org/~skolychev/"
-
-DEPEND="net-libs/libpcap
- >=sys-apps/sed-4
- dev-lang/perl"
-
-SLOT="0"
-LICENSE="Artistic"
-KEYWORDS="alpha amd64 hppa ia64 ppc sparc x86"
-
-src_unpack() {
- unpack ${A}
-
- # This patch makes sure CFLAGS are applied properly instead of
- # being runon additions to the previously defined symbol.
- # Attempts to address the problem in bug 16388 without completely
- # losing CFLAGS. The patch submitted to that bug chose to remove
- # the $ENV{'CFLAGS'}. With the current state of MakeMaker, this
- # would be a perfectly acceptable choice, because the approach
- # taken here ends up with two sets of CFLAGS in the compile line.
- # However, I believe that it may be more prudent in the long run
- # to try to accommodate what I think the original intention of the
- # Makefile was. Perhaps on some system with some (maybe future)
- # version of MakeMaker, this would be the only way to convey
- # CFLAGS. Since duplication of CFLAGS is harmless, I'm going to
- # go with adding the space instead of taking out the $ENV{CFLAGS}.
-
- # Robert Coie <rac@gentoo.org> 2003.05.08
-
- sed -i -e "s/D_IFLIST_'\./D_IFLIST_ '\./" ${S}/Makefile.PL || die "problem fixing makefile"
-
- epatch "${FILESDIR}"/${P}-gcc4.patch
-}