summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2005-12-02 12:52:23 +0000
committerMartin Schlemmer <azarah@gentoo.org>2005-12-02 12:52:23 +0000
commit839c0ed24ca66fc9b9defad69eeb6ad4ece8746c (patch)
treeed5d75784bd363cbacddaa558e05af4f3d863feb /sys-apps/sandbox
parentNew release. (diff)
downloadgentoo-2-839c0ed24ca66fc9b9defad69eeb6ad4ece8746c.tar.gz
gentoo-2-839c0ed24ca66fc9b9defad69eeb6ad4ece8746c.tar.bz2
gentoo-2-839c0ed24ca66fc9b9defad69eeb6ad4ece8746c.zip
Remove old versions.
(Portage version: 2.0.53)
Diffstat (limited to 'sys-apps/sandbox')
-rw-r--r--sys-apps/sandbox/files/digest-sandbox-1.2.101
-rw-r--r--sys-apps/sandbox/files/digest-sandbox-1.2.111
-rw-r--r--sys-apps/sandbox/files/digest-sandbox-1.2.131
-rw-r--r--sys-apps/sandbox/files/digest-sandbox-1.2.141
-rw-r--r--sys-apps/sandbox/files/digest-sandbox-1.2.151
-rw-r--r--sys-apps/sandbox/files/digest-sandbox-1.2.91
-rw-r--r--sys-apps/sandbox/files/sandbox-1.2.10-uclibc-getcwd.patch30
-rw-r--r--sys-apps/sandbox/files/sandbox-1.2.9-uclibc-getcwd.patch21
-rw-r--r--sys-apps/sandbox/sandbox-1.2.10.ebuild109
-rw-r--r--sys-apps/sandbox/sandbox-1.2.11.ebuild115
-rw-r--r--sys-apps/sandbox/sandbox-1.2.13.ebuild114
-rw-r--r--sys-apps/sandbox/sandbox-1.2.14.ebuild114
-rw-r--r--sys-apps/sandbox/sandbox-1.2.15.ebuild118
-rw-r--r--sys-apps/sandbox/sandbox-1.2.9.ebuild110
14 files changed, 0 insertions, 737 deletions
diff --git a/sys-apps/sandbox/files/digest-sandbox-1.2.10 b/sys-apps/sandbox/files/digest-sandbox-1.2.10
deleted file mode 100644
index f60e0940b0f7..000000000000
--- a/sys-apps/sandbox/files/digest-sandbox-1.2.10
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ff0847f817dbb0022c1c96c42dab350e sandbox-1.2.10.tar.bz2 227184
diff --git a/sys-apps/sandbox/files/digest-sandbox-1.2.11 b/sys-apps/sandbox/files/digest-sandbox-1.2.11
deleted file mode 100644
index b7f71e9a9b9c..000000000000
--- a/sys-apps/sandbox/files/digest-sandbox-1.2.11
+++ /dev/null
@@ -1 +0,0 @@
-MD5 91434c1bd37fb4a62072c9eb821f0b66 sandbox-1.2.11.tar.bz2 221518
diff --git a/sys-apps/sandbox/files/digest-sandbox-1.2.13 b/sys-apps/sandbox/files/digest-sandbox-1.2.13
deleted file mode 100644
index 96b963c08463..000000000000
--- a/sys-apps/sandbox/files/digest-sandbox-1.2.13
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3e27aaf27a44855ef12c97d2d1a5a359 sandbox-1.2.13.tar.bz2 223344
diff --git a/sys-apps/sandbox/files/digest-sandbox-1.2.14 b/sys-apps/sandbox/files/digest-sandbox-1.2.14
deleted file mode 100644
index 6fa654b3bd10..000000000000
--- a/sys-apps/sandbox/files/digest-sandbox-1.2.14
+++ /dev/null
@@ -1 +0,0 @@
-MD5 cbc05b64fc57c56bc47c894ff9f6ddde sandbox-1.2.14.tar.bz2 223690
diff --git a/sys-apps/sandbox/files/digest-sandbox-1.2.15 b/sys-apps/sandbox/files/digest-sandbox-1.2.15
deleted file mode 100644
index a56c82a49a5d..000000000000
--- a/sys-apps/sandbox/files/digest-sandbox-1.2.15
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ad994188dcab73fc5ae6ce33b8dd1f6b sandbox-1.2.15.tar.bz2 231747
diff --git a/sys-apps/sandbox/files/digest-sandbox-1.2.9 b/sys-apps/sandbox/files/digest-sandbox-1.2.9
deleted file mode 100644
index f19e4e557f7c..000000000000
--- a/sys-apps/sandbox/files/digest-sandbox-1.2.9
+++ /dev/null
@@ -1 +0,0 @@
-MD5 853c805131bcbf49d283b3f324694918 sandbox-1.2.9.tar.bz2 226661
diff --git a/sys-apps/sandbox/files/sandbox-1.2.10-uclibc-getcwd.patch b/sys-apps/sandbox/files/sandbox-1.2.10-uclibc-getcwd.patch
deleted file mode 100644
index 2c538eec6f86..000000000000
--- a/sys-apps/sandbox/files/sandbox-1.2.10-uclibc-getcwd.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Index: getcwd.c
-===================================================================
---- getcwd.c (revision 125)
-+++ getcwd.c (working copy)
-@@ -128,7 +128,7 @@
- if (strlen(path_buf) + 4 > path_size) {
- goto oops;
- }
-- snprintf(path_buf, 4, "/..");
-+ snprintf(path_buf + strlen(path_buf), 4, "/..");
- if (recurser(path_buf, path_size, root_dev, root_ino) == 0)
- return 0;
-
-@@ -146,6 +146,8 @@
- struct stat st;
- size_t olderrno;
-
-+ if (lstat("/", &st) < 0)
-+ return -1;
- olderrno = errno;
- len = -1;
- cwd = recurser(buf, size, st.st_dev, st.st_ino);
-@@ -175,6 +177,7 @@
- if (path == NULL)
- return NULL;
- }
-+ snprintf(buf, 2, ".");
- ret = __syscall_egetcwd(path, alloc_size);
- if (ret >= 0)
- {
diff --git a/sys-apps/sandbox/files/sandbox-1.2.9-uclibc-getcwd.patch b/sys-apps/sandbox/files/sandbox-1.2.9-uclibc-getcwd.patch
deleted file mode 100644
index 8709d70d6d66..000000000000
--- a/sys-apps/sandbox/files/sandbox-1.2.9-uclibc-getcwd.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: getcwd.c
-===================================================================
---- getcwd.c (revision 125)
-+++ getcwd.c (working copy)
-@@ -146,6 +146,8 @@
- struct stat st;
- size_t olderrno;
-
-+ if (lstat("/", &st) < 0)
-+ return -1;
- olderrno = errno;
- len = -1;
- cwd = recurser(buf, size, st.st_dev, st.st_ino);
-@@ -175,6 +177,7 @@
- if (path == NULL)
- return NULL;
- }
-+ snprintf(buf, 2, ".");
- ret = __syscall_egetcwd(path, alloc_size);
- if (ret >= 0)
- {
diff --git a/sys-apps/sandbox/sandbox-1.2.10.ebuild b/sys-apps/sandbox/sandbox-1.2.10.ebuild
deleted file mode 100644
index 8be23a118a7f..000000000000
--- a/sys-apps/sandbox/sandbox-1.2.10.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.10.ebuild,v 1.13 2005/11/22 22:16:44 vapier Exp $
-
-#
-# don't monkey with this ebuild unless contacting portage devs.
-# period.
-#
-
-inherit eutils flag-o-matic toolchain-funcs multilib
-
-DESCRIPTION="sandbox'd LD_PRELOAD hack"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~azarah/sandbox/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-#KEYWORDS=" alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-RESTRICT="multilib-pkg-force"
-
-DEPEND=""
-
-setup_multilib() {
- if use amd64 && has_m32 && [[ ${CONF_MULTILIBDIR} == "lib32" ]]; then
- export DEFAULT_ABI="amd64"
- export MULTILIB_ABIS="x86 amd64"
- export CFLAGS_amd64=${CFLAGS_amd64:-"-m64"}
- export CFLAGS_x86=${CFLAGS_x86-"-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"}
- export CHOST_amd64="x86_64-pc-linux-gnu"
- export CHOST_x86="i686-pc-linux-gnu"
- export LIBDIR_amd64=${LIBDIR_amd64-${CONF_LIBDIR}}
- export LIBDIR_x86=${LIBDIR_x86-${CONF_MULTILIBDIR}}
- fi
-}
-
-src_unpack() {
- setup_multilib
- for ABI in $(get_install_abis) ; do
- cd ${WORKDIR}
- unpack ${A}
- einfo "Unpacking sandbox for ABI=${ABI}..."
- mv ${S} ${S%/}-${ABI} || die "failed moving \$S to ${ABI}"
- cd ${S%/}-${ABI}
- # Fix getcwd, bug #98419.
- epatch ${FILESDIR}/${P}-uclibc-getcwd.patch
- done
-}
-
-abi_fail_check() {
- local ABI=$1
- if [[ ${ABI} == "x86" ]] ; then
- echo
- eerror "Building failed for ABI=x86!. This usually means a broken"
- eerror "multilib setup. Please fix that before filling a bugreport"
- eerror "against sandbox."
- echo
- fi
-}
-
-src_compile() {
- setup_multilib
-
- filter-lfs-flags #90228
-
- has_multilib_profile && append-flags -DSB_HAVE_64BIT_ARCH
-
- ewarn "If configure fails with a 'cannot run C compiled programs' error, try this:"
- ewarn "FEATURES=-sandbox emerge sandbox"
-
- local iscross=0
- [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscross=1
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- export ABI
- export CHOST=$(get_abi_CHOST)
- [[ ${iscross} == 0 ]] && export CBUILD=${CHOST}
-
- cd ${S}-${ABI}
-
- einfo "Configuring sandbox for ABI=${ABI}..."
- econf --libdir="/usr/$(get_libdir)"
- einfo "Building sandbox for ABI=${ABI}..."
- emake || {
- abi_fail_check "${ABI}"
- die "emake failed for ${ABI}"
- }
- done
- ABI="${OABI}"
-}
-
-src_install() {
- setup_multilib
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- cd ${S}-${ABI}
- einfo "Installing sandbox for ABI=${ABI}..."
- make DESTDIR="${D}" install || die "make install failed for ${ABI}"
- done
- ABI="${OABI}"
-
- for x in "${S}-${ABI}"/{AUTHORS,COPYING,ChangeLog,NEWS,README} ; do
- [[ -f ${x} && $(stat -c "%s" "${x}") -gt 0 ]] && dodoc "${x}"
- done
-}
diff --git a/sys-apps/sandbox/sandbox-1.2.11.ebuild b/sys-apps/sandbox/sandbox-1.2.11.ebuild
deleted file mode 100644
index 1631f91a1135..000000000000
--- a/sys-apps/sandbox/sandbox-1.2.11.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.11.ebuild,v 1.15 2005/11/22 22:16:44 vapier Exp $
-
-#
-# don't monkey with this ebuild unless contacting portage devs.
-# period.
-#
-
-inherit eutils flag-o-matic eutils toolchain-funcs multilib
-
-DESCRIPTION="sandbox'd LD_PRELOAD hack"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~azarah/sandbox/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-#KEYWORDS=" alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-RESTRICT="multilib-pkg-force"
-
-DEPEND=""
-
-setup_multilib() {
- if use amd64 && has_m32 && [[ ${CONF_MULTILIBDIR} == "lib32" ]]; then
- export DEFAULT_ABI="amd64"
- export MULTILIB_ABIS="x86 amd64"
- export CFLAGS_amd64=${CFLAGS_amd64:-"-m64"}
- export CFLAGS_x86=${CFLAGS_x86-"-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"}
- export CHOST_amd64="x86_64-pc-linux-gnu"
- export CHOST_x86="i686-pc-linux-gnu"
- export LIBDIR_amd64=${LIBDIR_amd64-${CONF_LIBDIR}}
- export LIBDIR_x86=${LIBDIR_x86-${CONF_MULTILIBDIR}}
- fi
-}
-
-src_unpack() {
- setup_multilib
- for ABI in $(get_install_abis) ; do
- cd ${WORKDIR}
- unpack ${A}
- einfo "Unpacking sandbox for ABI=${ABI}..."
- mv ${S} ${S%/}-${ABI} || die "failed moving \$S to ${ABI}"
- done
-}
-
-abi_fail_check() {
- local ABI=$1
- if [[ ${ABI} == "x86" ]] ; then
- echo
- eerror "Building failed for ABI=x86!. This usually means a broken"
- eerror "multilib setup. Please fix that before filling a bugreport"
- eerror "against sandbox."
- echo
- fi
-}
-
-src_compile() {
- setup_multilib
-
- filter-lfs-flags #90228
-
- has_multilib_profile && append-flags -DSB_HAVE_64BIT_ARCH
-
- ewarn "If configure fails with a 'cannot run C compiled programs' error, try this:"
- ewarn "FEATURES=-sandbox emerge sandbox"
-
- local iscross=0
- [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscross=1
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- export ABI
- export CHOST=$(get_abi_CHOST)
- [[ ${iscross} == 0 ]] && export CBUILD=${CHOST}
-
- cd ${S}-${ABI}
-
- einfo "Configuring sandbox for ABI=${ABI}..."
- econf --libdir="/usr/$(get_libdir)"
- einfo "Building sandbox for ABI=${ABI}..."
- emake || {
- abi_fail_check "${ABI}"
- die "emake failed for ${ABI}"
- }
- done
- ABI="${OABI}"
-}
-
-src_install() {
- setup_multilib
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- cd ${S}-${ABI}
- einfo "Installing sandbox for ABI=${ABI}..."
- make DESTDIR="${D}" install || die "make install failed for ${ABI}"
- done
- ABI="${OABI}"
-
- keepdir /var/log/sandbox
- fowners root:portage /var/log/sandbox
- fperms 0770 /var/log/sandbox
-
- for x in "${S}-${ABI}"/{AUTHORS,COPYING,ChangeLog,NEWS,README} ; do
- [[ -f ${x} && $(stat -c "%s" "${x}") -gt 0 ]] && dodoc "${x}"
- done
-}
-
-pkg_preinst() {
- chown root:portage ${IMAGE}/var/log/sandbox
- chmod 0770 ${IMAGE}/var/log/sandbox
-}
diff --git a/sys-apps/sandbox/sandbox-1.2.13.ebuild b/sys-apps/sandbox/sandbox-1.2.13.ebuild
deleted file mode 100644
index e441c53ec9e3..000000000000
--- a/sys-apps/sandbox/sandbox-1.2.13.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.13.ebuild,v 1.5 2005/11/22 22:16:44 vapier Exp $
-
-#
-# don't monkey with this ebuild unless contacting portage devs.
-# period.
-#
-
-inherit eutils flag-o-matic eutils toolchain-funcs multilib
-
-DESCRIPTION="sandbox'd LD_PRELOAD hack"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~azarah/sandbox/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-#KEYWORDS=" alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-RESTRICT="multilib-pkg-force"
-
-DEPEND=""
-
-setup_multilib() {
- if use amd64 && has_m32 && [[ ${CONF_MULTILIBDIR} == "lib32" ]]; then
- export DEFAULT_ABI="amd64"
- export MULTILIB_ABIS="x86 amd64"
- export CFLAGS_amd64=${CFLAGS_amd64:-"-m64"}
- export CFLAGS_x86=${CFLAGS_x86-"-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"}
- export CHOST_amd64="x86_64-pc-linux-gnu"
- export CHOST_x86="i686-pc-linux-gnu"
- export LIBDIR_amd64=${LIBDIR_amd64-${CONF_LIBDIR}}
- export LIBDIR_x86=${LIBDIR_x86-${CONF_MULTILIBDIR}}
- fi
-}
-
-src_unpack() {
- unpack ${A}
-}
-
-abi_fail_check() {
- local ABI=$1
- if [[ ${ABI} == "x86" ]] ; then
- echo
- eerror "Building failed for ABI=x86!. This usually means a broken"
- eerror "multilib setup. Please fix that before filling a bugreport"
- eerror "against sandbox."
- echo
- fi
-}
-
-src_compile() {
- setup_multilib
-
- filter-lfs-flags #90228
-
- has_multilib_profile && append-flags -DSB_HAVE_64BIT_ARCH
-
- ewarn "If configure fails with a 'cannot run C compiled programs' error, try this:"
- ewarn "FEATURES=-sandbox emerge sandbox"
-
- local iscross=0
- [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscross=1
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- export ABI
- export CHOST=$(get_abi_CHOST)
- [[ ${iscross} == 0 ]] && export CBUILD=${CHOST}
- # Needed for older broken portage versions (bug #109036)
- portageq has_version "${ROOT}" '<portage-2.0.51.22' && \
- unset EXTRA_ECONF
-
- mkdir "${S}-${ABI}"
- cd "${S}-${ABI}"
-
- einfo "Configuring sandbox for ABI=${ABI}..."
- ECONF_SOURCE="../${P}/" \
- econf --libdir="/usr/$(get_libdir)"
- einfo "Building sandbox for ABI=${ABI}..."
- emake || {
- abi_fail_check "${ABI}"
- die "emake failed for ${ABI}"
- }
- done
- ABI="${OABI}"
-}
-
-src_install() {
- setup_multilib
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- cd ${S}-${ABI}
- einfo "Installing sandbox for ABI=${ABI}..."
- make DESTDIR="${D}" install || die "make install failed for ${ABI}"
- done
- ABI="${OABI}"
-
- keepdir /var/log/sandbox
- fowners root:portage /var/log/sandbox
- fperms 0770 /var/log/sandbox
-
- for x in "${S}"/{AUTHORS,COPYING,ChangeLog,NEWS,README} ; do
- [[ -s ${x} ]] && dodoc "${x}"
- done
-}
-
-pkg_preinst() {
- chown root:portage ${IMAGE}/var/log/sandbox
- chmod 0770 ${IMAGE}/var/log/sandbox
-}
diff --git a/sys-apps/sandbox/sandbox-1.2.14.ebuild b/sys-apps/sandbox/sandbox-1.2.14.ebuild
deleted file mode 100644
index d57c39a77854..000000000000
--- a/sys-apps/sandbox/sandbox-1.2.14.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.14.ebuild,v 1.1 2005/11/28 10:34:43 azarah Exp $
-
-#
-# don't monkey with this ebuild unless contacting portage devs.
-# period.
-#
-
-inherit eutils flag-o-matic eutils toolchain-funcs multilib
-
-DESCRIPTION="sandbox'd LD_PRELOAD hack"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~azarah/sandbox/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-#KEYWORDS=" alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-RESTRICT="multilib-pkg-force"
-
-DEPEND=""
-
-setup_multilib() {
- if use amd64 && has_m32 && [[ ${CONF_MULTILIBDIR} == "lib32" ]]; then
- export DEFAULT_ABI="amd64"
- export MULTILIB_ABIS="x86 amd64"
- export CFLAGS_amd64=${CFLAGS_amd64:-"-m64"}
- export CFLAGS_x86=${CFLAGS_x86-"-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"}
- export CHOST_amd64="x86_64-pc-linux-gnu"
- export CHOST_x86="i686-pc-linux-gnu"
- export LIBDIR_amd64=${LIBDIR_amd64-${CONF_LIBDIR}}
- export LIBDIR_x86=${LIBDIR_x86-${CONF_MULTILIBDIR}}
- fi
-}
-
-src_unpack() {
- unpack ${A}
-}
-
-abi_fail_check() {
- local ABI=$1
- if [[ ${ABI} == "x86" ]] ; then
- echo
- eerror "Building failed for ABI=x86!. This usually means a broken"
- eerror "multilib setup. Please fix that before filling a bugreport"
- eerror "against sandbox."
- echo
- fi
-}
-
-src_compile() {
- setup_multilib
-
- filter-lfs-flags #90228
-
- has_multilib_profile && append-flags -DSB_HAVE_64BIT_ARCH
-
- ewarn "If configure fails with a 'cannot run C compiled programs' error, try this:"
- ewarn "FEATURES=-sandbox emerge sandbox"
-
- local iscross=0
- [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscross=1
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- export ABI
- export CHOST=$(get_abi_CHOST)
- [[ ${iscross} == 0 ]] && export CBUILD=${CHOST}
- # Needed for older broken portage versions (bug #109036)
- portageq has_version "${ROOT}" '<portage-2.0.51.22' && \
- unset EXTRA_ECONF
-
- mkdir "${S}-${ABI}"
- cd "${S}-${ABI}"
-
- einfo "Configuring sandbox for ABI=${ABI}..."
- ECONF_SOURCE="../${P}/" \
- econf --libdir="/usr/$(get_libdir)"
- einfo "Building sandbox for ABI=${ABI}..."
- emake || {
- abi_fail_check "${ABI}"
- die "emake failed for ${ABI}"
- }
- done
- ABI="${OABI}"
-}
-
-src_install() {
- setup_multilib
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- cd ${S}-${ABI}
- einfo "Installing sandbox for ABI=${ABI}..."
- make DESTDIR="${D}" install || die "make install failed for ${ABI}"
- done
- ABI="${OABI}"
-
- keepdir /var/log/sandbox
- fowners root:portage /var/log/sandbox
- fperms 0770 /var/log/sandbox
-
- for x in "${S}"/{AUTHORS,COPYING,ChangeLog,NEWS,README} ; do
- [[ -s ${x} ]] && dodoc "${x}"
- done
-}
-
-pkg_preinst() {
- chown root:portage ${IMAGE}/var/log/sandbox
- chmod 0770 ${IMAGE}/var/log/sandbox
-}
diff --git a/sys-apps/sandbox/sandbox-1.2.15.ebuild b/sys-apps/sandbox/sandbox-1.2.15.ebuild
deleted file mode 100644
index aac6075f2f4d..000000000000
--- a/sys-apps/sandbox/sandbox-1.2.15.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.15.ebuild,v 1.2 2005/12/02 06:44:50 mr_bones_ Exp $
-
-#
-# don't monkey with this ebuild unless contacting portage devs.
-# period.
-#
-
-inherit eutils flag-o-matic eutils toolchain-funcs multilib
-
-DESCRIPTION="sandbox'd LD_PRELOAD hack"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~azarah/sandbox/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-#KEYWORDS=" alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-RESTRICT="multilib-pkg-force"
-
-DEPEND=""
-
-setup_multilib() {
- if use amd64 && has_m32 && [[ ${CONF_MULTILIBDIR} == "lib32" ]]; then
- export DEFAULT_ABI="amd64"
- export MULTILIB_ABIS="x86 amd64"
- export CFLAGS_amd64=${CFLAGS_amd64:-"-m64"}
- export CFLAGS_x86=${CFLAGS_x86-"-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"}
- export CHOST_amd64="x86_64-pc-linux-gnu"
- export CHOST_x86="i686-pc-linux-gnu"
- export LIBDIR_amd64=${LIBDIR_amd64-${CONF_LIBDIR}}
- export LIBDIR_x86=${LIBDIR_x86-${CONF_MULTILIBDIR}}
- fi
-}
-
-src_unpack() {
- unpack ${A}
-}
-
-abi_fail_check() {
- local ABI=$1
- if [[ ${ABI} == "x86" ]] ; then
- echo
- eerror "Building failed for ABI=x86!. This usually means a broken"
- eerror "multilib setup. Please fix that before filling a bugreport"
- eerror "against sandbox."
- echo
- fi
-}
-
-src_compile() {
- local myconf
- local iscross=0
-
- setup_multilib
-
- filter-lfs-flags #90228
-
- has_multilib_profile && myconf="--enable-multilib"
-
- ewarn "If configure fails with a 'cannot run C compiled programs' error, try this:"
- ewarn "FEATURES=-sandbox emerge sandbox"
-
- [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscross=1
-
- OABI="${ABI}"
- OCHOST="${CHOST}"
- for ABI in $(get_install_abis); do
- mkdir "${WORKDIR}/build-${ABI}-${OCHOST}"
- cd "${WORKDIR}/build-${ABI}-${OCHOST}"
-
- # Needed for older broken portage versions (bug #109036)
- portageq has_version "${ROOT}" '<portage-2.0.51.22' && \
- unset EXTRA_ECONF
-
- export ABI
- export CHOST=$(get_abi_CHOST)
- [[ ${iscross} == 0 ]] && export CBUILD=${CHOST}
-
- einfo "Configuring sandbox for ABI=${ABI}..."
- ECONF_SOURCE="../${P}/" \
- econf --libdir="/usr/$(get_libdir)" ${myconf}
- einfo "Building sandbox for ABI=${ABI}..."
- emake || {
- abi_fail_check "${ABI}"
- die "emake failed for ${ABI}"
- }
- done
- ABI="${OABI}"
-}
-
-src_install() {
- setup_multilib
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- cd "${WORKDIR}/build-${ABI}-${CHOST}"
- einfo "Installing sandbox for ABI=${ABI}..."
- make DESTDIR="${D}" install || die "make install failed for ${ABI}"
- done
- ABI="${OABI}"
-
- keepdir /var/log/sandbox
- fowners root:portage /var/log/sandbox
- fperms 0770 /var/log/sandbox
-
- for x in "${S}"/{AUTHORS,COPYING,ChangeLog,NEWS,README} ; do
- [[ -s ${x} ]] && dodoc "${x}"
- done
-}
-
-pkg_preinst() {
- chown root:portage ${IMAGE}/var/log/sandbox
- chmod 0770 ${IMAGE}/var/log/sandbox
-}
diff --git a/sys-apps/sandbox/sandbox-1.2.9.ebuild b/sys-apps/sandbox/sandbox-1.2.9.ebuild
deleted file mode 100644
index 17b2da18c05d..000000000000
--- a/sys-apps/sandbox/sandbox-1.2.9.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.9.ebuild,v 1.6 2005/11/22 22:16:44 vapier Exp $
-
-#
-# don't monkey with this ebuild unless contacting portage devs.
-# period.
-#
-
-inherit eutils flag-o-matic toolchain-funcs multilib
-
-DESCRIPTION="sandbox'd LD_PRELOAD hack"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~azarah/sandbox/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-#KEYWORDS=" alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-RESTRICT="multilib-pkg-force"
-
-DEPEND=""
-
-setup_multilib() {
- if use amd64 && has_m32 && [[ ${CONF_MULTILIBDIR} == "lib32" ]]; then
- export DEFAULT_ABI="amd64"
- export MULTILIB_ABIS="x86 amd64"
- export CFLAGS_amd64=${CFLAGS_amd64:-"-m64"}
- export CFLAGS_x86=${CFLAGS_x86-"-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"}
- export CHOST_amd64="x86_64-pc-linux-gnu"
- export CHOST_x86="i686-pc-linux-gnu"
- export LIBDIR_amd64=${LIBDIR_amd64-${CONF_LIBDIR}}
- export LIBDIR_x86=${LIBDIR_x86-${CONF_MULTILIBDIR}}
- fi
-}
-
-src_unpack() {
- setup_multilib
- for ABI in $(get_install_abis) ; do
- cd ${WORKDIR}
- unpack ${A}
- einfo "Unpacking sandbox for ABI=${ABI}..."
- mv ${S} ${S%/}-${ABI} || die "failed moving \$S to ${ABI}"
- cd ${S%/}-${ABI}
- # Fix getcwd, bug #98419.
- epatch ${FILESDIR}/${P}-uclibc-getcwd.patch
- done
-}
-
-abi_fail_check() {
- local ABI=$1
- if [[ ${ABI} == "x86" ]] ; then
- echo
- eerror "Building failed for ABI=x86!. This usually means a broken"
- eerror "multilib setup. Please fix that before filling a bugreport"
- eerror "against sandbox."
- echo
- fi
-}
-
-src_compile() {
- setup_multilib
-
- filter-lfs-flags #90228
-
- has_multilib_profile && append-flags -DSB_HAVE_64BIT_ARCH
-
- ewarn "If configure fails with a 'cannot run C compiled programs' error, try this:"
- ewarn "FEATURES=-sandbox emerge sandbox"
-
- local iscross=0
- [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscross=1
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- export ABI
- export CHOST=$(get_abi_CHOST)
- [[ ${iscross} == 0 ]] && export CBUILD=${CHOST}
-
- cd ${S}-${ABI}
-
- einfo "Configuring sandbox for ABI=${ABI}..."
- econf --libdir="/usr/$(get_libdir)"
- einfo "Building sandbox for ABI=${ABI}..."
- emake || {
- abi_fail_check "${ABI}"
- die "emake failed for ${ABI}"
- }
- done
- ABI="${OABI}"
-}
-
-src_install() {
- setup_multilib
-
- OABI="${ABI}"
- for ABI in $(get_install_abis); do
- cd ${S}-${ABI}
- einfo "Installing sandbox for ABI=${ABI}..."
- make DESTDIR="${D}" install || die "make install failed for ${ABI}"
- done
- ABI="${OABI}"
-
- for x in "${S}-${ABI}"/{AUTHORS,COPYING,ChangeLog,NEWS,README} ; do
- [[ -f ${x} && $(stat -c "%s" "${x}") -gt 0 ]] && dodoc "${x}"
- done
-}