Gentoo Archives: gentoo-user

From: "Bo Ørsted Andresen" <bo.andresen@××××.dk>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] How do I enable package specific FEATURES and CFLAGS?
Date: Sat, 14 Apr 2007 12:16:13
Message-Id: 200704141409.18913.bo.andresen@zlin.dk
In Reply to: [gentoo-user] How do I enable package specific FEATURES and CFLAGS? by Jules Colding
1 On Saturday 14 April 2007 13:28:26 Jules Colding wrote:
2 > Hi,
3 >
4 > I always want to build evolution and evolution-data-server with:
5 >
6 > CFLAGS="-march=k8 -O1 -ggdb -pipe"
7 > FEATURES=splitdebug
8 >
9 > as opposed to other all packages which I want to build with:
10 >
11 > CFLAGS="-march=k8 -O2 -pipe"
12 >
13 > How can I arrange for this to happen without manually
14 > changing /etc/make.conf whenever I build those packages?
15
16 # mkdir -p /etc/portage/env/mail-client
17 # CAT << END > /etc/portage/env/mail-client/evolution
18 CFLAGS="-march=k8 -O1 -ggdb -pipe"
19 FEATURES="$FEATURES splitdebug"
20 END
21
22 Likewise for gnome-extra/evolution-data-server.
23
24 --
25 Bo Andresen

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user] How do I enable package specific FEATURES and CFLAGS? "Bo Ørsted Andresen" <bo.andresen@××××.dk>
Re: [gentoo-user] How do I enable package specific FEATURES and CFLAGS? Daniel Pielmeier <daniel.pielmeier@××××××××××.com>