diff options
Diffstat (limited to 'sys-apps/sandbox/sandbox-1.2.5.ebuild')
-rw-r--r-- | sys-apps/sandbox/sandbox-1.2.5.ebuild | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/sys-apps/sandbox/sandbox-1.2.5.ebuild b/sys-apps/sandbox/sandbox-1.2.5.ebuild new file mode 100644 index 000000000000..40ddc613063d --- /dev/null +++ b/sys-apps/sandbox/sandbox-1.2.5.ebuild @@ -0,0 +1,99 @@ +# 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.5.ebuild,v 1.1 2005/05/04 15:16:00 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" +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 mips ppc ppc-macos ppc64 s390 sh sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" +RESTRICT="multilib-pkg-force" + +DEPEND="virtual/libc" + +check_multilib() { + has_m32 + if [ "$?" == 0 ] ; then + einfo "Found valid multilib environment." + einfo "Building with multilib support." + export MULTILIB="1" + else + ewarn "No valid multilib environment found!" + ewarn "Building without multilib support. If" + ewarn "you want to have multilib support," + ewarn "emerge gcc with \"multilib\" in your" + ewarn "useflags." + fi +} + +src_unpack() { + if has_multilib_profile ; then + for ABI in $(get_install_abis); do + unpack ${A} + cd ${WORKDIR} + einfo "Unpacking sandbox for ABI=${ABI}..." + mv ${S} ${S%/}-${ABI} || die "failed moving \$S to ${ABI}" + done + else + unpack ${A} + fi +} + +src_compile() { + filter-lfs-flags #90228 + if has_multilib_profile ; then + OABI="${ABI}" + export CFLAGS="${CFLAGS} -DSB_HAVE_64BIT_ARCH" + for ABI in $(get_install_abis); do + export ABI + cd ${S}-${ABI} + einfo "Configuring sandbox for ABI=${ABI}..." + econf --libdir="/usr/$(get_libdir)" || die "econf failed for ${ABI}" + einfo "Building sandbox for ABI=${ABI}..." + emake || { + 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 + die "emake failed for ${ABI}" + } + done + ABI="${OABI}" + else + if useq amd64 ; then + check_multilib + export HAVE_64BIT_ARCH="${MULTILIB}" + fi + econf || die "econf failed" + emake || die "emake failed" + fi +} + +src_install() { + if has_multilib_profile; then + OABI="${ABI}" + for ABI in $(get_install_abis); do + export ABI + cd ${S}-${ABI} + einfo "Installing sandbox for ABI=${ABI}..." + make DESTDIR="${D}" install || die "make install failed for ${ABI}" + done + ABI="${OABI}" + else + make install DESTDIR="${D}" || die "einstalled failed" + fi +} |