1 |
On Thursday 17 January 2008, Donnie Berkholz wrote: |
2 |
> On 03:21 Thu 17 Jan , Joshua Jackson (tsunam) wrote: |
3 |
> > 1.1 sci-misc/boinc/boinc-5.10.28.ebuild |
4 |
> > |
5 |
> > file : |
6 |
> > http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/boinc-5.10 |
7 |
> >.28.ebuild?rev=1.1&view=markup plain: |
8 |
> > http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/boinc-5.10 |
9 |
> >.28.ebuild?rev=1.1&content-type=text/plain |
10 |
> > |
11 |
> > src_compile() { |
12 |
> > append-flags -O3 -funroll-loops -fforce-addr -ffast-math |
13 |
|
14 |
/me cries |
15 |
|
16 |
> Something this wacky could really use a comment. Presumably upstream |
17 |
> highly recommends these flags. Perhaps a custom-cflags USE flag could |
18 |
> disable them. |
19 |
|
20 |
yes to all points |
21 |
|
22 |
> > mkdir "${D}"/var "${D}"/var/lib "${D}"/var/lib/boinc/ |
23 |
> |
24 |
> `mkdir -p` isn't portable? |
25 |
|
26 |
it is portable (any system not supporting it is not supported by Gentoo and |
27 |
should be recycled). even then, `dodir` should always (*) be used for dir |
28 |
creation in $D. |
29 |
-mike |