---
 profiles/features/32bit-native/eapi           |  1 -
 profiles/features/32bit-native/make.defaults  |  9 ---------
 profiles/features/32bit-native/packages       |  6 ------
 profiles/features/32bit-native/profile.bashrc |  7 -------
 profiles/features/32bit-native/use.force      |  2 --
 profiles/features/32bit-native/use.mask       |  9 ---------
 profiles/features/64bit-native/eapi           |  1 -
 profiles/features/64bit-native/make.defaults  | 10 ----------
 profiles/features/64bit-native/profile.bashrc | 18 ------------------
 profiles/features/64bit-native/use.force      |  2 --
 profiles/features/64bit-native/use.mask       |  9 ---------
 11 files changed, 74 deletions(-)
 delete mode 100644 profiles/features/32bit-native/eapi
 delete mode 100644 profiles/features/32bit-native/make.defaults
 delete mode 100644 profiles/features/32bit-native/packages
 delete mode 100644 profiles/features/32bit-native/profile.bashrc
 delete mode 100644 profiles/features/32bit-native/use.force
 delete mode 100644 profiles/features/32bit-native/use.mask
 delete mode 100644 profiles/features/64bit-native/eapi
 delete mode 100644 profiles/features/64bit-native/make.defaults
 delete mode 100644 profiles/features/64bit-native/profile.bashrc
 delete mode 100644 profiles/features/64bit-native/use.force
 delete mode 100644 profiles/features/64bit-native/use.mask

diff --git a/profiles/features/32bit-native/eapi 
b/profiles/features/32bit-native/eapi
deleted file mode 100644
index 7ed6ff82de6b..000000000000
--- a/profiles/features/32bit-native/eapi
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/profiles/features/32bit-native/make.defaults 
b/profiles/features/32bit-native/make.defaults
deleted file mode 100644
index f23c882330fd..000000000000
--- a/profiles/features/32bit-native/make.defaults
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-FEATURES="-multilib-strict"
-
-MULTILIB_STRICT_DIRS=""
-MULTILIB_STRICT_DENY=""
-MULTILIB_STRICT_EXEMPT=""
diff --git a/profiles/features/32bit-native/packages 
b/profiles/features/32bit-native/packages
deleted file mode 100644
index 887f05da9931..000000000000
--- a/profiles/features/32bit-native/packages
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright 2006-2008 Gentoo Foundation.
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-# We don't need kgcc64 to build kernels.
--*sys-devel/kgcc64
diff --git a/profiles/features/32bit-native/profile.bashrc 
b/profiles/features/32bit-native/profile.bashrc
deleted file mode 100644
index c601900384e3..000000000000
--- a/profiles/features/32bit-native/profile.bashrc
+++ /dev/null
@@ -1,7 +0,0 @@
-# Here we die on any arch that isn't 32-bit.
-case ${ARCH} in
-       amd64) die "This architecture always uses a 64-bit kernel. Please use 
an x86 profile!" ;;
-       mips) die "This architecture always uses a 64-bit kernel." ;;
-       ppc64) die "This architecture always uses a 64-bit kernel. Please use a 
ppc profile!" ;;
-       sparc) die "This architecture always uses a 64-bit kernel." ;;
-esac
diff --git a/profiles/features/32bit-native/use.force 
b/profiles/features/32bit-native/use.force
deleted file mode 100644
index 78a0ced5d86d..000000000000
--- a/profiles/features/32bit-native/use.force
+++ /dev/null
@@ -1,2 +0,0 @@
-# Force disable multilib USE flag
--multilib
diff --git a/profiles/features/32bit-native/use.mask 
b/profiles/features/32bit-native/use.mask
deleted file mode 100644
index f5d4435fdbce..000000000000
--- a/profiles/features/32bit-native/use.mask
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 2004-2008 Gentoo Foundation.
-# Distributed under the terms of the GNU General Public License, v2
-# $Id$
-
-# SECTION: Mask
-
-# 2008/02/13 - Chris Gianelloni <wolf3...@gentoo.org>
-# Mask multilib, since we cannot use it.
-multilib
diff --git a/profiles/features/64bit-native/eapi 
b/profiles/features/64bit-native/eapi
deleted file mode 100644
index 7ed6ff82de6b..000000000000
--- a/profiles/features/64bit-native/eapi
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/profiles/features/64bit-native/make.defaults 
b/profiles/features/64bit-native/make.defaults
deleted file mode 100644
index 550c923fea54..000000000000
--- a/profiles/features/64bit-native/make.defaults
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-# We disable the symlink, since we won't be using it.
-SYMLINK_LIB="yes"
-
-# Since we're doing a pure 64-bit, we want LIBDIR to be lib64
-LIBDIR_amd64="lib64"
-LIBDIR_ppc64="lib64"
diff --git a/profiles/features/64bit-native/profile.bashrc 
b/profiles/features/64bit-native/profile.bashrc
deleted file mode 100644
index 71acdf820a05..000000000000
--- a/profiles/features/64bit-native/profile.bashrc
+++ /dev/null
@@ -1,18 +0,0 @@
-# Here we remove any ABI that isn't native.
-case ${ARCH} in
-       mips)
-               # Both n32 and n64 are 64-bit kernel and userland.
-               # n64 is 64-bit pointers/long
-               # n32 is 32-bit pointers/long
-               case ${USE} in
-                       n32)
-                               export CFLAGS="${CFLAGS/-mabi=*/-mabi=n32}"
-                               export CXXFLAGS="${CFLAGS}"
-                               ;;
-                       n64)
-                               export CFLAGS="${CFLAGS/-mabi=*/-mabi=64}"
-                               export CXXFLAGS="${CFLAGS}"
-                               ;;
-               esac
-               ;;
-esac
diff --git a/profiles/features/64bit-native/use.force 
b/profiles/features/64bit-native/use.force
deleted file mode 100644
index 78a0ced5d86d..000000000000
--- a/profiles/features/64bit-native/use.force
+++ /dev/null
@@ -1,2 +0,0 @@
-# Force disable multilib USE flag
--multilib
diff --git a/profiles/features/64bit-native/use.mask 
b/profiles/features/64bit-native/use.mask
deleted file mode 100644
index 25c245751fb4..000000000000
--- a/profiles/features/64bit-native/use.mask
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-# USE flags masked because providing packages require a 32-bit ABI
-
-# 2008/02/13 - Chris Gianelloni <wolf3...@gentoo.org>
-# Mask multilib, since we cannot use it.
-multilib
-- 
2.11.0


Reply via email to