diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-07-01 21:15:23 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-07-01 21:15:23 +0000 |
commit | 9b02de3c9de1030d49543eaa8237f2ec3f0db317 (patch) | |
tree | e5ce4b53d8a8c62269a12b47256c84fd37c22c1f /profiles | |
parent | whoops, commited a wrong file (diff) | |
download | historical-9b02de3c9de1030d49543eaa8237f2ec3f0db317.tar.gz historical-9b02de3c9de1030d49543eaa8237f2ec3f0db317.tar.bz2 historical-9b02de3c9de1030d49543eaa8237f2ec3f0db317.zip |
remove gcc34-2004.2
Diffstat (limited to 'profiles')
6 files changed, 0 insertions, 95 deletions
diff --git a/profiles/default-linux/amd64/gcc34-2004.2/deprecated b/profiles/default-linux/amd64/gcc34-2004.2/deprecated deleted file mode 100644 index 82c470cf389f..000000000000 --- a/profiles/default-linux/amd64/gcc34-2004.2/deprecated +++ /dev/null @@ -1,11 +0,0 @@ -default-linux/amd64/2004.3 -# emerge -n '>=sys-apps/portage-2.0.51' -# cd /etc/ -# rm make.profile -# ln -s ../usr/portage/profiles/default-linux/amd64/2004.3 make.profile - -Your current profile is subject to removal any time after 2005.07.01. -If for any reason you require this deprecated profile, please discuss it -on gentoo-amd64@gentoo.org so the issue blocking your transition can be -addressed. - diff --git a/profiles/default-linux/amd64/gcc34-2004.2/make.defaults b/profiles/default-linux/amd64/gcc34-2004.2/make.defaults deleted file mode 100644 index ac63000fc286..000000000000 --- a/profiles/default-linux/amd64/gcc34-2004.2/make.defaults +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/amd64/gcc34-2004.2/make.defaults,v 1.13 2005/03/09 00:35:06 vapier Exp $ - -GRP_STAGE23_USE="ipv6 pam tcpd readline nls ssl gpm perl python berkdb acl ncurses -java -nptl" - -USE="amd64 bitmap-fonts oss 3dnow apm arts avi berkdb crypt -cups encode fortran font-server foomaticdb gdbm gif gpm gtk gtk2 imlib -gcj -java -nptl jpeg kde gnome libg++ libwww mikmod mmx motif mpeg ncurses nls oggvorbis opengl pam pdflib png python -qt quicktime readline sdl slang spell sse ssl tcpd truetype truetype-fonts type1-fonts X xml2 xmms xv zlib" - -# not having a 32bit sandbox breaks too much right now, and we cant even be -# sure the user has a 32bit sandbox! it only gets installed if you add multilib -# to use, recompile gcc, and then recompile portage. :/ -FEATURES="-sandbox" - -# yay lib64! -CONF_LIBDIR="lib64" - -SYMLINK_LIB="yes" diff --git a/profiles/default-linux/amd64/gcc34-2004.2/packages b/profiles/default-linux/amd64/gcc34-2004.2/packages deleted file mode 100644 index 943dc96cba18..000000000000 --- a/profiles/default-linux/amd64/gcc34-2004.2/packages +++ /dev/null @@ -1,12 +0,0 @@ ->dev-lang/gpc-2.1 -*>=sys-apps/baselayout-1.8.11 -*>=sys-apps/portage-2.0.50-r8 -*>=sys-devel/binutils-2.15.90.0.1.1-r1 - -# lets not mask gcc 3.3.x so that repoman doesnt have a hissy fit -#*>=sys-devel/gcc-3.4.0-r6 -*>=sys-devel/gcc-3.3.3 - -*sys-libs/libstdc++-v3 -*>=sys-libs/glibc-2.3.4.20040605 ->=sys-apps/sysklogd-1.4.1 diff --git a/profiles/default-linux/amd64/gcc34-2004.2/parent b/profiles/default-linux/amd64/gcc34-2004.2/parent deleted file mode 100644 index 135d52ad3d3a..000000000000 --- a/profiles/default-linux/amd64/gcc34-2004.2/parent +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright 2004 Gentoo Foundation. -# Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/amd64/gcc34-2004.2/parent,v 1.2 2005/05/10 02:14:20 swegener Exp $ - -# This file describes the parent profile to this. In most cases this will -# just be the name of the parent directory -.. diff --git a/profiles/default-linux/amd64/gcc34-2004.2/profile.bashrc b/profiles/default-linux/amd64/gcc34-2004.2/profile.bashrc deleted file mode 100644 index 0a0f2cdd5dcb..000000000000 --- a/profiles/default-linux/amd64/gcc34-2004.2/profile.bashrc +++ /dev/null @@ -1,46 +0,0 @@ -# currently theoretical multilib stuff only available if using portage 2.0.51 -CHOST32="i686-pc-linux-gnu" -CONF_MULTILIBDIR="${CONF_MULTILIBDIR:=lib32}" -# until everything in the tree understands $(get_libdir), the only sane -# default for this is lib. -CONF_LIBDIR="${CONF_LIBDIR:=lib}" -ARCH_WRAPPER="linux32" -CC32="gcc32" -CPP32="g++32" - - -setup_multilib_variables() { - # if run via linux32, uname -m will always return i686 - if [ "$(uname -m)" == "i686" ] ; then - CONF_LIBDIR="${CONF_MULTILIBDIR:=lib32}" - CHOST="${CHOST32:=i686-pc-linux-gnu}" - - if [ -x /usr/bin/${CC32:=gcc32} ] ; then - CC="${CC32:=gcc32}" - CPP="${CPP32:=g++32}" - else - CFLAGS="${CFLAGS} -m32" - CXXFLAGS="${CXXFLAGS} -m32" - fi - else - # this isnt needed for profiles that set CONF_LIBDIR, but it - # doesnt hurt to be safe. - CONF_LIBDIR="${CONF_LIBDIR:=lib64}" - fi - - export CONF_LIBDIR -} - -[ "${CCHOST}" == "" -o "${CCHOST}" == "${CHOST}" -o "${CCHOST}" == "${CHOST32}" ] && setup_multilib_variables -[ "${CONF_MULTILIBDIR}" == "lib" -a "${CONF_LIBDIR}" == "lib64" ] && SKIP_MULTILIB_HACK="YES" - - -# spec switching support only available in gcc 3.4.2-r1 and later -if [ -n "${USE_SPECS}" ] ; then - GCC_VER="$(${CC:=gcc} -dumpversion)" - SPECSLOC="/usr/lib/gcc-lib/${CHOST}/${GCC_VER}/" - if [ -f ${SPECSLOC}/${USE_SPECS}.specs ] ; then - export GCC_SPECS="${SPECSLOC}/${USE_SPECS}.specs" - fi -fi - diff --git a/profiles/default-linux/amd64/gcc34-2004.2/use.mask b/profiles/default-linux/amd64/gcc34-2004.2/use.mask deleted file mode 100644 index 68a2e9f38ef1..000000000000 --- a/profiles/default-linux/amd64/gcc34-2004.2/use.mask +++ /dev/null @@ -1,2 +0,0 @@ -# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/amd64/gcc34-2004.2/use.mask,v 1.5 2005/01/23 11:15:47 eradicator Exp $ --multilib |