diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-06-09 17:34:43 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-06-09 17:34:43 +0000 |
commit | f3ffeed6830c71a4bc71cb8bcbf9aada870a6732 (patch) | |
tree | 00532e102774e5e4ed2cad4e6a7a235d9933fe6c /sys-apps/sandbox/sandbox-1.2.9.ebuild | |
parent | Cleaning up icon stuff to use doicon/newicon. (diff) | |
download | gentoo-2-f3ffeed6830c71a4bc71cb8bcbf9aada870a6732.tar.gz gentoo-2-f3ffeed6830c71a4bc71cb8bcbf9aada870a6732.tar.bz2 gentoo-2-f3ffeed6830c71a4bc71cb8bcbf9aada870a6732.zip |
Update version.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-apps/sandbox/sandbox-1.2.9.ebuild')
-rw-r--r-- | sys-apps/sandbox/sandbox-1.2.9.ebuild | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/sys-apps/sandbox/sandbox-1.2.9.ebuild b/sys-apps/sandbox/sandbox-1.2.9.ebuild new file mode 100644 index 000000000000..e370e6bc7822 --- /dev/null +++ b/sys-apps/sandbox/sandbox-1.2.9.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.9.ebuild,v 1.1 2005/06/09 17: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 ppc-macos ppc64 s390 sh sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~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 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 + unpack ${A} + cd ${WORKDIR} + 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" + + OABI="${ABI}" + for ABI in $(get_install_abis); do + export ABI + 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 + export ABI + 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 +} |