Gentoo Archives: gentoo-commits

From: "Friedrich Oslage (bluebird)" <bluebird@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in profiles/default/linux/sparc/experimental/multilib: profile.bashrc
Date: Wed, 31 Dec 2008 16:05:18
Message-Id: E1LI3ZL-0002Vf-UH@stork.gentoo.org
1 bluebird 08/12/31 16:05:15
2
3 Added: profile.bashrc
4 Log:
5 Add profile.bashrc to warn users who didn't read the migration guide
6
7 Revision Changes Path
8 1.1 profiles/default/linux/sparc/experimental/multilib/profile.bashrc
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/linux/sparc/experimental/multilib/profile.bashrc?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/linux/sparc/experimental/multilib/profile.bashrc?rev=1.1&content-type=text/plain
12
13 Index: profile.bashrc
14 ===================================================================
15 # Copyright 1999-2008 Gentoo Foundation
16 # Distributed under the terms of the GNU General Public License v2
17 # $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/sparc/experimental/multilib/profile.bashrc,v 1.1 2008/12/31 16:05:15 bluebird Exp $
18
19 if [[ "${EBUILD_PHASE}" == "setup" ]]
20 then
21 if [[ ! "${I_READ_THE_MULTILIB_MIGRATION_GUIDE}" == "yes" ]]
22 then
23 ewarn "When migrating to the new sparc mutlilib profile please keep in mind that it is"
24 ewarn "still in an experimental state. Also note that you need to follow the migration"
25 ewarn "guide [0], otherwise important packages such as gcc or glibc will fail to"
26 ewarn "compile and most other packages will be installed incorrectly."
27 ewarn ""
28 ewarn "[0] http://sparc.gentoo.org/multilib.xml"
29 echo
30 fi
31 fi