blob: 9b2e70a0916dc2b1c5a9cf71f7bfdd3a9bd22403 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 2006-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/profiles/base/profile.bashrc,v 1.4 2009/10/16 17:37:56 arfrever Exp $
if [[ ${EBUILD_PHASE} == "setup" ]]; then
export PYTHONDONTWRITEBYTECODE="1"
fi
for conf in ${PN} ${PN}-${PV} ${PN}-${PV}-${PR}; do
[[ -r ${PORTAGE_CONFIGROOT}/etc/portage/env/${CATEGORY}/${conf} ]] \
&& . ${PORTAGE_CONFIGROOT}/etc/portage/env/${CATEGORY}/${conf}
done
if ! declare -F elog >/dev/null ; then
elog() {
einfo "$@"
}
fi
|