diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-04 18:59:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-04 18:59:23 +0000 |
commit | d275e7370e9b96f19cfcd97654bafe1b0d5faa1d (patch) | |
tree | 2c6c4232369932415613ef077e1933cbed94f1c4 /sys-devel | |
parent | Version bump. (diff) | |
download | gentoo-2-d275e7370e9b96f19cfcd97654bafe1b0d5faa1d.tar.gz gentoo-2-d275e7370e9b96f19cfcd97654bafe1b0d5faa1d.tar.bz2 gentoo-2-d275e7370e9b96f19cfcd97654bafe1b0d5faa1d.zip |
Fix option collsion between internal -b (--binutils) and portages -b (build package).
(Portage version: 2.0.51.19)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/crossdev/ChangeLog | 9 | ||||
-rw-r--r-- | sys-devel/crossdev/crossdev-0.9-r3.ebuild (renamed from sys-devel/crossdev/crossdev-0.9-r2.ebuild) | 2 | ||||
-rwxr-xr-x | sys-devel/crossdev/files/crossdev | 30 | ||||
-rw-r--r-- | sys-devel/crossdev/files/digest-crossdev-0.9-r3 (renamed from sys-devel/crossdev/files/digest-crossdev-0.9-r2) | 0 |
4 files changed, 24 insertions, 17 deletions
diff --git a/sys-devel/crossdev/ChangeLog b/sys-devel/crossdev/ChangeLog index 6c277e203cdb..56caace4ed33 100644 --- a/sys-devel/crossdev/ChangeLog +++ b/sys-devel/crossdev/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-devel/crossdev # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/ChangeLog,v 1.9 2005/03/04 03:27:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/ChangeLog,v 1.10 2005/03/04 18:59:23 vapier Exp $ + +*crossdev-0.9-r3 (04 Mar 2005) + + 04 Mar 2005; Mike Frysinger <vapier@gentoo.org> files/crossdev, + -crossdev-0.9-r2.ebuild, +crossdev-0.9-r3.ebuild: + Fix option collsion between internal -b (--binutils) and portages -b (build + package). *crossdev-0.9-r2 (03 Mar 2005) diff --git a/sys-devel/crossdev/crossdev-0.9-r2.ebuild b/sys-devel/crossdev/crossdev-0.9-r3.ebuild index 37c5b2175e68..c37c0b82c5ee 100644 --- a/sys-devel/crossdev/crossdev-0.9-r2.ebuild +++ b/sys-devel/crossdev/crossdev-0.9-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/crossdev-0.9-r2.ebuild,v 1.1 2005/03/04 03:27:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/crossdev-0.9-r3.ebuild,v 1.1 2005/03/04 18:59:23 vapier Exp $ DESCRIPTION="Gentoo Cross-toolchain generator" HOMEPAGE="http://www.gentoo.org/" diff --git a/sys-devel/crossdev/files/crossdev b/sys-devel/crossdev/files/crossdev index f63e6b4384a1..fc9873d20491 100755 --- a/sys-devel/crossdev/files/crossdev +++ b/sys-devel/crossdev/files/crossdev @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.4 2005/03/04 04:28:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.5 2005/03/04 18:59:23 vapier Exp $ source /sbin/functions.sh || exit 1 die() { @@ -19,10 +19,10 @@ cat << EOF Usage: ${HILITE}crossdev${NORMAL} ${GOOD}[options]${NORMAL} ${BRACKET}--target TARGET${NORMAL} ${GOOD}Options${NORMAL}: - ${GOOD}-b, --binutils${NORMAL} ver Specify version of binutils to use - ${GOOD}-g, --gcc${NORMAL} ver Specify version of gcc to use - ${GOOD}-k, --kernel${NORMAL} ver Specify version of kernel headers to use - ${GOOD}-l, --libc${NORMAL} ver Specify version of libc to use + ${GOOD}--b, --binutils${NORMAL} ver Specify version of binutils to use + ${GOOD}--g, --gcc${NORMAL} ver Specify version of gcc to use + ${GOOD}--k, --kernel${NORMAL} ver Specify version of kernel headers to use + ${GOOD}--l, --libc${NORMAL} ver Specify version of libc to use ${GOOD}-a, -b, -p, -v${NORMAL} Options to pass to emerge (see emerge(1)) ${GOOD}-s1, --stage1${NORMAL} Build a C compiler (no libc/C++) @@ -104,15 +104,15 @@ LVER="[latest]" while [[ $# -gt 0 ]] ; do case $1 in - -t|--target) shift; parse_target $1;; - -b|--binutils) shift; BVER=-$1;; - -g|--gcc) shift; GVER=-$1;; - -k|--kernel) shift; KVER=-$1;; - -l|--libc) shift; LVER=-$1;; - -s?|--stage?) STAGE=${1:0-1};; - -a|-b|-p|-v) UOPTS="${UOPTS} $1";; - -h|--help) usage;; - *) eerror "UNKNOWN OPTION: '$1'" ; usage 1;; + -t|--target) shift; parse_target $1;; + --b|--binutils) shift; BVER=-$1;; + --g|--gcc) shift; GVER=-$1;; + --k|--kernel) shift; KVER=-$1;; + --l|--libc) shift; LVER=-$1;; + -s?|--stage?) STAGE=${1:0-1};; + -a|-b|-p|-v) UOPTS="${UOPTS} $1";; + -h|--help) usage;; + *) eerror "UNKNOWN OPTION: '$1'" ; usage 1;; esac shift done @@ -135,7 +135,7 @@ PORTDIR_OVERLAY=$(portageq envvar PORTDIR_OVERLAY) PORTDIR=$(portageq envvar PORTDIR) PORT_LOGDIR=$(portageq envvar PORT_LOGDIR) PORT_LOGDIR=${PORT_LOGDIR:-/var/log/portage} -PKGDIR=$(portageq envvar PKGDIR)/cross-${CTARGET} +PKGDIR=$(portageq envvar PKGDIR)/cross/${CTARGET} [[ ! -d ${PORT_LOGDIR} ]] && mkdir -p ${PORT_LOGDIR} ( hr diff --git a/sys-devel/crossdev/files/digest-crossdev-0.9-r2 b/sys-devel/crossdev/files/digest-crossdev-0.9-r3 index e69de29bb2d1..e69de29bb2d1 100644 --- a/sys-devel/crossdev/files/digest-crossdev-0.9-r2 +++ b/sys-devel/crossdev/files/digest-crossdev-0.9-r3 |