diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-11-14 08:50:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-11-14 08:50:38 +0000 |
commit | a6f186be9b00ec0efac12b95a7bbc5cd52954a28 (patch) | |
tree | b8ae18f48e018b0f4e1270d093ed4d4473188398 /sys-devel/binutils-config | |
parent | bump'n'clean (Manifest recommit) (diff) | |
download | gentoo-2-a6f186be9b00ec0efac12b95a7bbc5cd52954a28.tar.gz gentoo-2-a6f186be9b00ec0efac12b95a7bbc5cd52954a28.tar.bz2 gentoo-2-a6f186be9b00ec0efac12b95a7bbc5cd52954a28.zip |
initial ebuild
Diffstat (limited to 'sys-devel/binutils-config')
-rw-r--r-- | sys-devel/binutils-config/ChangeLog | 8 | ||||
-rw-r--r-- | sys-devel/binutils-config/Manifest | 0 | ||||
-rw-r--r-- | sys-devel/binutils-config/binutils-config-1.0.ebuild | 19 | ||||
-rwxr-xr-x | sys-devel/binutils-config/files/binutils-config-1.0 | 195 | ||||
-rw-r--r-- | sys-devel/binutils-config/files/digest-binutils-config-1.0 | 0 | ||||
-rw-r--r-- | sys-devel/binutils-config/metadata.xml | 5 |
6 files changed, 227 insertions, 0 deletions
diff --git a/sys-devel/binutils-config/ChangeLog b/sys-devel/binutils-config/ChangeLog new file mode 100644 index 000000000000..472edc7c1520 --- /dev/null +++ b/sys-devel/binutils-config/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for sys-devel/binutils-config +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/ChangeLog,v 1.1 2004/11/14 08:50:38 vapier Exp $ + +*binutils-config-1.0 (14 Nov 2004) + + 14 Nov 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/sys-devel/binutils-config/Manifest b/sys-devel/binutils-config/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/sys-devel/binutils-config/Manifest diff --git a/sys-devel/binutils-config/binutils-config-1.0.ebuild b/sys-devel/binutils-config/binutils-config-1.0.ebuild new file mode 100644 index 000000000000..c06f58bb321f --- /dev/null +++ b/sys-devel/binutils-config/binutils-config-1.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/binutils-config-1.0.ebuild,v 1.1 2004/11/14 08:50:38 vapier Exp $ + +DESCRIPTION="Utility to change the gcc compiler being used" +HOMEPAGE="http://www.gentoo.org/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +DEPEND="app-shells/bash" + +src_install() { + newbin ${FILESDIR}/${PN}-${PV} ${PN} || die + dosed "s:PORTAGE-VERSION:${PV}:" /usr/bin/${PN} +} diff --git a/sys-devel/binutils-config/files/binutils-config-1.0 b/sys-devel/binutils-config/files/binutils-config-1.0 new file mode 100755 index 000000000000..aae12c6cabd6 --- /dev/null +++ b/sys-devel/binutils-config/files/binutils-config-1.0 @@ -0,0 +1,195 @@ +#!/bin/bash +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-1.0,v 1.1 2004/11/14 08:50:38 vapier Exp $ + +# Format of /etc/env.d/binutils/: +# config-TARGET: CURRENT=version for TARGET +# TARGET-VER: has a TARGET and VER variable + +trap ":" INT QUIT TSTP + +source /etc/init.d/functions.sh || { + echo "$0: Could not source /etc/init.d/functions.sh!" + exit 1 +} +umask 022 + +usage() { +cat << "USAGE_END" +Usage: binutils-config [options] [binutils profile] +Change the current binutils profile, or give info about profiles. + +Options: + -c, --get-current-profile Print current profile + -l, --list-profiles Print a list of available profiles + +Profile names are of the form: <CHOST>-<binutils version> +For example: x86_64-pc-linux-gnu-2.15.92.0.2 +USAGE_END +} + +[ "$#" -lt 1 ] && usage && exit 1 + +switch_profile() { + source "${ENV_D}/${PROFILE}" + + ebegin "Switching to ${PROFILE}" + + BINPATH="/usr/${TARGET}/binutils-bin/${VER}" + cd "${ROOT}/${BINPATH}" || exit 1 + mkdir -p "${ROOT}"/usr/${TARGET}/bin + for x in * ; do + ln -sf "${BINPATH}/${x}" "${ROOT}"/usr/${TARGET}/bin/${x} + done + + LIBPATH="/usr/lib/binutils/${TARGET}/${VER}" + cd "${ROOT}/${LIBPATH}" || exit 1 + mkdir -p "${ROOT}"/usr/${TARGET}/lib + ln -sf "${LIBPATH}/ldscripts" "${ROOT}"/usr/${TARGET}/lib/ldscripts + if [ "${TARGET}" == "${HOST}" ] ; then + dstlib="${ROOT}"/usr/${HOST}/lib + else + dstlib="${ROOT}"/usr/${HOST}/${TARGET}/lib + fi + mkdir -p "${dstlib}" + for x in lib* ; do + ln -sf "${LIBPATH}/${x}" "${dstlib}/${x}" + done + + INCPATH="${LIBPATH}/include" + cd "${ROOT}/${INCPATH}" || exit 1 + if [ "${TARGET}" == "${HOST}" ] ; then + dstinc="${ROOT}"/usr/include + else + dstinc="${ROOT}"/usr/${TARGET}/include + fi + mkdir -p "${dstinc}" + for x in * ; do + ln -sf "${INCPATH}/${x}" "${dstinc}/${x}" + done + + [ "${ROOT}" = "/" ] && env-update >& /dev/null + eend 0 + + echo "CURRENT=${VER}" > "${ENV_D}/config-${TARGET}" + + return 0 +} + +get_current_profile() { + if [ ! -f "${ENV_D}/config-${PROFILE}" ] ; then + eerror "$0: No binutils profile is active!" + return 1 + fi + + source "${ENV_D}/config-${PROFILE}" + + if [ -z "${CURRENT}" ] ; then + eerror "$0: No binutils profile is active!" + return 1 + fi + + echo "${PROFILE}-${CURRENT}" + + return 0 +} + +list_profiles() { + local i=1 + + if [ "${ROOT}" != "/" ] ; then + echo "Using binutils-config info in ${ROOT}" + fi + target= + for x in "${ENV_D}"/* ; do + if [ -f "${x}" -a "${x/\/config-}" == "${x}" ] ; then + source "${x}" + if [ "${target}" != "${TARGET}" ] ; then + [ -n "${target}" ] && echo + target="${TARGET}" + fi + + x="${x##*/}" + if [ -e "${ENV_D}/config-${TARGET}" ] ; then + source "${ENV_D}/config-${TARGET}" + [ "${VER}" == "${CURRENT}" ] && x="${x} *" + fi + echo " [${i}] ${x}" + i=$((i + 1)) + fi + done +} + +[ -z "${ROOT}" ] && ROOT="/" +ENV_D="${ROOT}etc/env.d/binutils" + +NEED_ACTION="yes" +DOIT="switch_profile" +PROFILE="" + +for x in "$@" ; do + case "${x}" in + -c|--get-current-profile) + if [ "${NEED_ACTION}" = "yes" ] + then + NEED_ACTION="no" + DOIT="get_current_profile" + fi + ;; + -l|--list-profiles) + if [ "${NEED_ACTION}" = "yes" ] + then + NEED_ACTION="no" + DOIT="list_profiles" + fi + ;; + -h|--help) + usage + exit 0 + ;; + -v|--version) + echo "binutils-config-1.0" + exit 0 + ;; + -*) + eerror "$0: Invalid switch! Run $0 without parameters for help." + exit 1 + ;; + *) + if [ -n "${PROFILE}" ] ; then + eerror "$0: Too many arguments! Run $0 without parameters for help." + exit 1 + fi + + if [ -z "$(echo ${x} | tr -d '[:digit:]')" ] + then + # User gave us a # representing the profile + i=1 + for y in "${ENV_D}"/* ; do + [ "${y/config-}" != "${y}" ] && continue + + if [ -f "${y}" ] && [ "${x}" -eq "${i}" ] ; then + PROFILE="${y##*/}" + break + fi + i=$((i + 1)) + done + else + # User gave us a full HOST-ver + x="${x##*/}" + if [ ! -f "${ENV_D}/${x}" ] && [ ! -f "${ENV_D}/config-${x}" ] ; then + eerror "$0: Could not locate '$x' in '${ENV_D}/'!" + exit 1 + fi + PROFILE="${x}" + fi + ;; + esac +done + +HOST="$(portageq envvar CHOST)" +[ -z "${PROFILE}" ] && PROFILE="${HOST}" +eval ${DOIT} + +# vim:ts=4 diff --git a/sys-devel/binutils-config/files/digest-binutils-config-1.0 b/sys-devel/binutils-config/files/digest-binutils-config-1.0 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/sys-devel/binutils-config/files/digest-binutils-config-1.0 diff --git a/sys-devel/binutils-config/metadata.xml b/sys-devel/binutils-config/metadata.xml new file mode 100644 index 000000000000..fb4199eb7afe --- /dev/null +++ b/sys-devel/binutils-config/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>toolchain</herd> +</pkgmetadata> |