blob: e23bcbecd9ae87ace540ce6416fdd73fb5f256e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2005 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.5 2005/04/29 01:28:44 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://www.cpan.org/"
DEPEND="virtual/libpcap >=sys-apps/sed-4"
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"
}
|