Gentoo Archives: gentoo-dev

From: Mike Frysinger <vapier@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] net-misc/pimd RFC for new ebuild
Date: Tue, 19 Jul 2011 18:40:24
Message-Id: CAJaTeTp2axq=zUUj199ActKJPUZCDdj_CRh98d==j838mvQW8g@mail.gmail.com
In Reply to: [gentoo-dev] net-misc/pimd RFC for new ebuild by Kfir Lavi
1 On Sun, Jul 17, 2011 at 04:45, Kfir Lavi wrote:
2 > -e '/^CFLAGS/{s|[[:space:]]=| +=|g;s|-O2||g;s|-Werror||g}' \
3
4 no need for the [[:space:]] since the first = will get matched, and
5 presumably it reads something like "CFLAGS = ......"
6
7 the others could be done with the -r flag and:
8 s|-(O2|Werror)||
9
10 > dodoc ... INSTALL ... LICENSE* ...
11
12 does the INSTALL contain any useful info beyond build/install steps ?
13 if not, dont bother.
14
15 LICENSE files should not be installed
16 -mike