public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2009-01-24  8:10 Javier Villavicencio (the_paya)
  0 siblings, 0 replies; 12+ messages in thread
From: Javier Villavicencio (the_paya) @ 2009-01-24  8:10 UTC (permalink / raw
  To: gentoo-commits

the_paya    09/01/24 08:10:24

  Added:                profile.bashrc
  Log:
  Move the fbsd profile.bashrc from releases.

Revision  Changes    Path
1.1                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.1&content-type=text/plain

Index: profile.bashrc
===================================================================
alias make=gmake
alias patch=gpatch
alias sed=gsed
alias awk=gawk






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2009-01-24 21:58 Javier Villavicencio (the_paya)
  0 siblings, 0 replies; 12+ messages in thread
From: Javier Villavicencio (the_paya) @ 2009-01-24 21:58 UTC (permalink / raw
  To: gentoo-commits

the_paya    09/01/24 21:58:18

  Modified:             profile.bashrc
  Log:
  Fix for the charset.alias collisions, bugs 169678, 195148 and 256129

Revision  Changes    Path
1.2                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.1&r2=1.2

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- profile.bashrc	24 Jan 2009 08:10:24 -0000	1.1
+++ profile.bashrc	24 Jan 2009 21:58:18 -0000	1.2
@@ -1,4 +1,20 @@
+#!/bin/bash
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.2 2009/01/24 21:58:18 the_paya Exp $
+
 alias make=gmake
 alias patch=gpatch
 alias sed=gsed
 alias awk=gawk
+
+# Hack to avoid every package that uses libiconv/gettext
+# install a charset.alias that will collide with libiconv's one
+# See bugs 169678, 195148 and 256129.
+# Also the discussion on
+# http://archives.gentoo.org/gentoo-dev/msg_8cb1805411f37b4eb168a3e680e531f3.xml
+post_src_install()
+{
+	if [[ "${PN}" != "libiconv" && -e "${D}"/usr/lib/charset.alias ]] ; then
+		rm -f "${D}"/usr/lib/charset.alias
+	fi
+}






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2009-03-11 14:41 Timothy Redaelli (drizzt)
  0 siblings, 0 replies; 12+ messages in thread
From: Timothy Redaelli (drizzt) @ 2009-03-11 14:41 UTC (permalink / raw
  To: gentoo-commits

drizzt      09/03/11 14:41:48

  Modified:             profile.bashrc
  Log:
  Delete /usr/lib*/charset.alias instead of /usr/lib/charset.alias.
  It is needed to make multilib work

Revision  Changes    Path
1.3                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.2&r2=1.3

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- profile.bashrc	24 Jan 2009 21:58:18 -0000	1.2
+++ profile.bashrc	11 Mar 2009 14:41:48 -0000	1.3
@@ -1,6 +1,6 @@
 #!/bin/bash
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.2 2009/01/24 21:58:18 the_paya Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.3 2009/03/11 14:41:48 drizzt Exp $
 
 alias make=gmake
 alias patch=gpatch
@@ -14,7 +14,8 @@
 # http://archives.gentoo.org/gentoo-dev/msg_8cb1805411f37b4eb168a3e680e531f3.xml
 post_src_install()
 {
-	if [[ "${PN}" != "libiconv" && -e "${D}"/usr/lib/charset.alias ]] ; then
-		rm -f "${D}"/usr/lib/charset.alias
+	echo cucu
+	if [ "${PN}" != "libiconv" -a -e "${D}"/usr/lib*/charset.alias ] ; then
+		rm -f "${D}"/usr/lib*/charset.alias
 	fi
 }






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2009-03-11 14:43 Timothy Redaelli (drizzt)
  0 siblings, 0 replies; 12+ messages in thread
From: Timothy Redaelli (drizzt) @ 2009-03-11 14:43 UTC (permalink / raw
  To: gentoo-commits

drizzt      09/03/11 14:43:09

  Modified:             profile.bashrc
  Log:
  ops

Revision  Changes    Path
1.4                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.3&r2=1.4

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- profile.bashrc	11 Mar 2009 14:41:48 -0000	1.3
+++ profile.bashrc	11 Mar 2009 14:43:09 -0000	1.4
@@ -1,6 +1,6 @@
 #!/bin/bash
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.3 2009/03/11 14:41:48 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.4 2009/03/11 14:43:09 drizzt Exp $
 
 alias make=gmake
 alias patch=gpatch
@@ -14,7 +14,6 @@
 # http://archives.gentoo.org/gentoo-dev/msg_8cb1805411f37b4eb168a3e680e531f3.xml
 post_src_install()
 {
-	echo cucu
 	if [ "${PN}" != "libiconv" -a -e "${D}"/usr/lib*/charset.alias ] ; then
 		rm -f "${D}"/usr/lib*/charset.alias
 	fi






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2010-03-16  2:25 Javier Villavicencio (the_paya)
  0 siblings, 0 replies; 12+ messages in thread
From: Javier Villavicencio (the_paya) @ 2010-03-16  2:25 UTC (permalink / raw
  To: gentoo-commits

the_paya    10/03/16 02:25:33

  Modified:             profile.bashrc
  Log:
  Another hack on fbsd/profile.bashrc to patch known install-sh versions that are likely to fail during a parallel make install.

Revision  Changes    Path
1.5                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.4&r2=1.5

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- profile.bashrc	11 Mar 2009 14:43:09 -0000	1.4
+++ profile.bashrc	16 Mar 2010 02:25:33 -0000	1.5
@@ -1,6 +1,6 @@
 #!/bin/bash
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.4 2009/03/11 14:43:09 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.5 2010/03/16 02:25:33 the_paya Exp $
 
 alias make=gmake
 alias patch=gpatch
@@ -12,9 +12,67 @@
 # See bugs 169678, 195148 and 256129.
 # Also the discussion on
 # http://archives.gentoo.org/gentoo-dev/msg_8cb1805411f37b4eb168a3e680e531f3.xml
-post_src_install()
+bsd-post_src_install()
 {
 	if [ "${PN}" != "libiconv" -a -e "${D}"/usr/lib*/charset.alias ] ; then
 		rm -f "${D}"/usr/lib*/charset.alias
 	fi
 }
+
+# These are because of
+# http://archives.gentoo.org/gentoo-dev/msg_529a0806ed2cf841a467940a57e2d588.xml
+# The profile-* ones are meant to be used in etc/portage/profile.bashrc by user
+# until there is the registration mechanism.
+profile-post_src_install() { bsd-post_src_install ; }
+        post_src_install() { bsd-post_src_install ; }
+
+
+# Another hack to fix old versions of install-sh (automake) where a non-gnu
+# mkdir is not considered thread-safe (make install errors with -j > 1)
+bsd-patch_install-sh() {
+	# Do nothing if we don't have patch installed:
+	if [[ -z $(type -P gpatch) ]]; then
+		return 0
+	fi
+	local EPDIR="${ECLASSDIR}/ELT-patches/install-sh"
+	local EPATCHES="${EPDIR}/1.5.6 ${EPDIR}/1.5.4 ${EPDIR}/1.5"
+	local ret=0
+	for file in $(find . -name "install-sh" -print); do
+		if [[ -n $(egrep "scriptversion=2005|scriptversion=2004" ${file}) ]]; then
+			einfo "Automatically patching parallel-make unfriendly install-sh."
+			# Stolen from libtool.eclass
+			for mypatch in ${EPATCHES}; do
+				if gpatch -p0 --dry-run "${file}" "${mypatch}" &> "${T}/patch_install-sh.log"; then
+					gpatch -p0 -g0 --no-backup-if-mismatch "${file}" "${mypatch}" \
+						&> "${T}/patch_install-sh.log"
+					ret=$?
+					break
+				else
+					ret=1
+				fi
+			done
+			if [[ ret -eq 0 ]]; then
+				einfo "Patch applied successfully on \"${file}\"."
+			else
+				ewarn "Unable to apply install-sh patch. "
+				ewarn "If you experience errors during install phase, try with MAKEOPTS=\"-j1\""
+			fi
+		fi
+	done
+}
+
+# It should be run after everything has been unpacked/patched, some developers
+# do patch this little bastard from time to time.
+# So do it after unpack() for EAPI=0|1 and after prepare() for everything else.
+if [[ -n $EAPI ]] ; then
+	case "$EAPI" in
+		0|1)
+			profile-post_src_unpack() { bsd-patch_install-sh ; }
+			post_src_unpack() { bsd-patch_install-sh ; }
+			;;
+		*)
+			profile_post_src_prepare() { bsd-patch_install-sh ; }
+			post_src_prepare() { bsd-patch_install-sh ; }
+			;;
+	esac
+fi






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2010-04-01  8:20 Javier Villavicencio (the_paya)
  0 siblings, 0 replies; 12+ messages in thread
From: Javier Villavicencio (the_paya) @ 2010-04-01  8:20 UTC (permalink / raw
  To: gentoo-commits

the_paya    10/04/01 08:20:18

  Modified:             profile.bashrc
  Log:
  Fix several scripts errors that expect configure setting bash as the running shell.

Revision  Changes    Path
1.6                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.5&r2=1.6

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- profile.bashrc	16 Mar 2010 02:25:33 -0000	1.5
+++ profile.bashrc	1 Apr 2010 08:20:18 -0000	1.6
@@ -1,12 +1,17 @@
 #!/bin/bash
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.5 2010/03/16 02:25:33 the_paya Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.6 2010/04/01 08:20:18 the_paya Exp $
 
 alias make=gmake
 alias patch=gpatch
 alias sed=gsed
 alias awk=gawk
 
+# Attempt to point the default SHELL used by configure scripts to bash.
+# while most should work with BSD's bourne just fine, the extra scripts
+# used by some applications (specially test scripts) use way too many bashisms.
+export CONFIG_SHELL="/bin/bash"
+
 # Hack to avoid every package that uses libiconv/gettext
 # install a charset.alias that will collide with libiconv's one
 # See bugs 169678, 195148 and 256129.






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2010-04-03 11:49 Javier Villavicencio (the_paya)
  0 siblings, 0 replies; 12+ messages in thread
From: Javier Villavicencio (the_paya) @ 2010-04-03 11:49 UTC (permalink / raw
  To: gentoo-commits

the_paya    10/04/03 11:49:51

  Modified:             profile.bashrc
  Log:
  Fix working dir on patch_install-sh_bsd().

Revision  Changes    Path
1.7                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.6&r2=1.7

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- profile.bashrc	1 Apr 2010 08:20:18 -0000	1.6
+++ profile.bashrc	3 Apr 2010 11:49:51 -0000	1.7
@@ -1,6 +1,6 @@
 #!/bin/bash
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.6 2010/04/01 08:20:18 the_paya Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.7 2010/04/03 11:49:51 the_paya Exp $
 
 alias make=gmake
 alias patch=gpatch
@@ -42,6 +42,7 @@
 	local EPDIR="${ECLASSDIR}/ELT-patches/install-sh"
 	local EPATCHES="${EPDIR}/1.5.6 ${EPDIR}/1.5.4 ${EPDIR}/1.5"
 	local ret=0
+	cd "${S}"
 	for file in $(find . -name "install-sh" -print); do
 		if [[ -n $(egrep "scriptversion=2005|scriptversion=2004" ${file}) ]]; then
 			einfo "Automatically patching parallel-make unfriendly install-sh."






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2010-04-23 11:02 Alexis Ballier (aballier)
  0 siblings, 0 replies; 12+ messages in thread
From: Alexis Ballier (aballier) @ 2010-04-23 11:02 UTC (permalink / raw
  To: gentoo-commits

aballier    10/04/23 11:02:00

  Modified:             profile.bashrc
  Log:
  Do not try to access $S if it does not exist.

Revision  Changes    Path
1.8                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.7&r2=1.8

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- profile.bashrc	3 Apr 2010 11:49:51 -0000	1.7
+++ profile.bashrc	23 Apr 2010 11:02:00 -0000	1.8
@@ -1,6 +1,6 @@
 #!/bin/bash
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.7 2010/04/03 11:49:51 the_paya Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.8 2010/04/23 11:02:00 aballier Exp $
 
 alias make=gmake
 alias patch=gpatch
@@ -39,6 +39,10 @@
 	if [[ -z $(type -P gpatch) ]]; then
 		return 0
 	fi
+
+        # Do nothing if $S does not exist
+        [ -d "${S}" ] || return 0
+
 	local EPDIR="${ECLASSDIR}/ELT-patches/install-sh"
 	local EPATCHES="${EPDIR}/1.5.6 ${EPDIR}/1.5.4 ${EPDIR}/1.5"
 	local ret=0






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2011-07-05 21:15 Alexis Ballier (aballier)
  0 siblings, 0 replies; 12+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-05 21:15 UTC (permalink / raw
  To: gentoo-commits

aballier    11/07/05 21:15:41

  Modified:             profile.bashrc
  Log:
  use GNU find and xargs in ebuild env, bug #374099

Revision  Changes    Path
1.9                  profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.8&r2=1.9

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- profile.bashrc	23 Apr 2010 11:02:00 -0000	1.8
+++ profile.bashrc	5 Jul 2011 21:15:41 -0000	1.9
@@ -1,11 +1,14 @@
 #!/bin/bash
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.8 2010/04/23 11:02:00 aballier Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.9 2011/07/05 21:15:41 aballier Exp $
 
 alias make=gmake
 alias patch=gpatch
 alias sed=gsed
 alias awk=gawk
+# findutils stuff
+alias find=gfind
+alias xargs=gxargs
 
 # Attempt to point the default SHELL used by configure scripts to bash.
 # while most should work with BSD's bourne just fine, the extra scripts






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2011-07-08 15:06 Naohiro Aota (naota)
  0 siblings, 0 replies; 12+ messages in thread
From: Naohiro Aota (naota) @ 2011-07-08 15:06 UTC (permalink / raw
  To: gentoo-commits

naota       11/07/08 15:06:22

  Modified:             profile.bashrc
  Log:
  Check if findutils stuffs exists.

Revision  Changes    Path
1.10                 profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.9&r2=1.10

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- profile.bashrc	5 Jul 2011 21:15:41 -0000	1.9
+++ profile.bashrc	8 Jul 2011 15:06:22 -0000	1.10
@@ -1,14 +1,14 @@
 #!/bin/bash
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.9 2011/07/05 21:15:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.10 2011/07/08 15:06:22 naota Exp $
 
 alias make=gmake
 alias patch=gpatch
 alias sed=gsed
 alias awk=gawk
 # findutils stuff
-alias find=gfind
-alias xargs=gxargs
+type -P gfind && alias find=gfind
+type -P gxargs && alias xargs=gxargs
 
 # Attempt to point the default SHELL used by configure scripts to bash.
 # while most should work with BSD's bourne just fine, the extra scripts






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2011-07-09 21:04 Alexis Ballier (aballier)
  0 siblings, 0 replies; 12+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-09 21:04 UTC (permalink / raw
  To: gentoo-commits

aballier    11/07/09 21:04:44

  Modified:             profile.bashrc
  Log:
  send type output to devnull otherwise we get garbage output

Revision  Changes    Path
1.11                 profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.10&r2=1.11

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- profile.bashrc	8 Jul 2011 15:06:22 -0000	1.10
+++ profile.bashrc	9 Jul 2011 21:04:44 -0000	1.11
@@ -1,14 +1,14 @@
 #!/bin/bash
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.10 2011/07/08 15:06:22 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.11 2011/07/09 21:04:44 aballier Exp $
 
 alias make=gmake
 alias patch=gpatch
 alias sed=gsed
 alias awk=gawk
 # findutils stuff
-type -P gfind && alias find=gfind
-type -P gxargs && alias xargs=gxargs
+type -P gfind > /dev/null && alias find=gfind
+type -P gxargs > /dev/null && alias xargs=gxargs
 
 # Attempt to point the default SHELL used by configure scripts to bash.
 # while most should work with BSD's bourne just fine, the extra scripts






^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc
@ 2012-05-29 13:42 Alexis Ballier (aballier)
  0 siblings, 0 replies; 12+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-29 13:42 UTC (permalink / raw
  To: gentoo-commits

aballier    12/05/29 13:42:41

  Modified:             profile.bashrc
  Log:
  Remove bash as CONFIG_SHELL: we should rather fix the bugs, and it makes other packages fail

Revision  Changes    Path
1.12                 profiles/default/bsd/fbsd/profile.bashrc

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc?r1=1.11&r2=1.12

Index: profile.bashrc
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- profile.bashrc	9 Jul 2011 21:04:44 -0000	1.11
+++ profile.bashrc	29 May 2012 13:42:41 -0000	1.12
@@ -1,6 +1,6 @@
 #!/bin/bash
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.11 2011/07/09 21:04:44 aballier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/fbsd/profile.bashrc,v 1.12 2012/05/29 13:42:41 aballier Exp $
 
 alias make=gmake
 alias patch=gpatch
@@ -13,7 +13,9 @@
 # Attempt to point the default SHELL used by configure scripts to bash.
 # while most should work with BSD's bourne just fine, the extra scripts
 # used by some applications (specially test scripts) use way too many bashisms.
-export CONFIG_SHELL="/bin/bash"
+# Alexis Ballier <29 May 2012>: Disable this, we should rather fix bugs and it
+# seems to confuse libtool a couple of packages (dev-libs/libtar, net-dns/hesiod)
+# export CONFIG_SHELL="/bin/bash"
 
 # Hack to avoid every package that uses libiconv/gettext
 # install a charset.alias that will collide with libiconv's one






^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2012-05-29 13:43 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-29 13:42 [gentoo-commits] gentoo-x86 commit in profiles/default/bsd/fbsd: profile.bashrc Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-09 21:04 Alexis Ballier (aballier)
2011-07-08 15:06 Naohiro Aota (naota)
2011-07-05 21:15 Alexis Ballier (aballier)
2010-04-23 11:02 Alexis Ballier (aballier)
2010-04-03 11:49 Javier Villavicencio (the_paya)
2010-04-01  8:20 Javier Villavicencio (the_paya)
2010-03-16  2:25 Javier Villavicencio (the_paya)
2009-03-11 14:43 Timothy Redaelli (drizzt)
2009-03-11 14:41 Timothy Redaelli (drizzt)
2009-01-24 21:58 Javier Villavicencio (the_paya)
2009-01-24  8:10 Javier Villavicencio (the_paya)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox