diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-08-01 19:59:06 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-08-01 19:59:06 +0000 |
commit | 6fd80a52e126192c84b1cf6ef6d8b0f3caaeb988 (patch) | |
tree | 8b279028fd3fad77ceb4e770dd379715f4ca7b19 /app-shells/bash/bash-3.1_p17.ebuild | |
parent | Move back to ~x86, since this version doesn't work on 2.6.x kernels. See bug ... (diff) | |
download | historical-6fd80a52e126192c84b1cf6ef6d8b0f3caaeb988.tar.gz historical-6fd80a52e126192c84b1cf6ef6d8b0f3caaeb988.tar.bz2 historical-6fd80a52e126192c84b1cf6ef6d8b0f3caaeb988.zip |
Don't make the ls alias when not using GNU userland, or it will break; export CLICOLOR for Gentoo/FreeBSD compatibility.
Package-Manager: portage-2.1.1_pre4-r1
Diffstat (limited to 'app-shells/bash/bash-3.1_p17.ebuild')
-rw-r--r-- | app-shells/bash/bash-3.1_p17.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app-shells/bash/bash-3.1_p17.ebuild b/app-shells/bash/bash-3.1_p17.ebuild index bfaf2e1655cd..792a2de6859c 100644 --- a/app-shells/bash/bash-3.1_p17.ebuild +++ b/app-shells/bash/bash-3.1_p17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.1_p17.ebuild,v 1.2 2006/05/06 00:58:51 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.1_p17.ebuild,v 1.3 2006/08/01 19:59:06 flameeyes Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -108,7 +108,7 @@ src_compile() { --disable-profiling \ --without-gnu-malloc \ ${myconf} || die - emake -j1 || die "make failed" # see bug 102426 + emake -j1 || die "make failed" # see bug 102426 } src_install() { @@ -126,6 +126,10 @@ src_install() { newins "${FILESDIR}"/dot-${f} .${f} done + if use userland_GNU; then + sed -i -e 's:^#GNU#::' "${D}/etc/skel/.bashrc" + fi + if use build ; then rm -rf "${D}"/usr else @@ -141,7 +145,7 @@ pkg_preinst() { mv -f "${ROOT}"/etc/bashrc "${ROOT}"/etc/bash/ fi - # our bash_logout is just a place holder so dont + # our bash_logout is just a place holder so dont # force users to go through etc-update all the time if [[ -e ${ROOT}/etc/bash/bash_logout ]] ; then rm -f "${D}"/etc/bash/bash_logout |