diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2006-07-11 19:24:01 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2006-07-11 19:24:01 +0000 |
commit | 73f0833d5e37b9843b340dc46e51576f27c96579 (patch) | |
tree | 990929d7a9dc291c629da61140df2b10e19ba919 /sys-apps/sandbox | |
parent | Mark 0.0.20040715 stable on ia64 (diff) | |
download | gentoo-2-73f0833d5e37b9843b340dc46e51576f27c96579.tar.gz gentoo-2-73f0833d5e37b9843b340dc46e51576f27c96579.tar.bz2 gentoo-2-73f0833d5e37b9843b340dc46e51576f27c96579.zip |
New testing version.
(Portage version: 2.1.1_pre2-r6)
Diffstat (limited to 'sys-apps/sandbox')
-rw-r--r-- | sys-apps/sandbox/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/sandbox/files/digest-sandbox-1.2.20_alpha2 | 3 | ||||
-rw-r--r-- | sys-apps/sandbox/sandbox-1.2.20_alpha2.ebuild | 133 |
3 files changed, 143 insertions, 1 deletions
diff --git a/sys-apps/sandbox/ChangeLog b/sys-apps/sandbox/ChangeLog index a76889d018ab..eac836edb09e 100644 --- a/sys-apps/sandbox/ChangeLog +++ b/sys-apps/sandbox/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/sandbox # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/ChangeLog,v 1.69 2006/07/09 06:36:47 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/ChangeLog,v 1.70 2006/07/11 19:24:00 azarah Exp $ + +*sandbox-1.2.20_alpha2 (11 Jul 2006) + + 11 Jul 2006; Martin Schlemmer <azarah@gentoo.org> + +sandbox-1.2.20_alpha2.ebuild: + New testing version. 09 Jul 2006; Joshua Kinard <kumba@gentoo.org> sandbox-1.2.17.ebuild: Marked stable on mips (even though it doesn't even work, best to keep up...) diff --git a/sys-apps/sandbox/files/digest-sandbox-1.2.20_alpha2 b/sys-apps/sandbox/files/digest-sandbox-1.2.20_alpha2 new file mode 100644 index 000000000000..9b69c402c6ac --- /dev/null +++ b/sys-apps/sandbox/files/digest-sandbox-1.2.20_alpha2 @@ -0,0 +1,3 @@ +MD5 e1563daddd0d348754075eca79ace15c sandbox-1.2.20alpha2.tar.bz2 278323 +RMD160 ebb3ca0963878810f3ac86633f848576fddb225e sandbox-1.2.20alpha2.tar.bz2 278323 +SHA256 19f7148e259cf5212b8e587789b61c33cd4053c1947219a22749e7fb750b21d3 sandbox-1.2.20alpha2.tar.bz2 278323 diff --git a/sys-apps/sandbox/sandbox-1.2.20_alpha2.ebuild b/sys-apps/sandbox/sandbox-1.2.20_alpha2.ebuild new file mode 100644 index 000000000000..04ecdedfbec1 --- /dev/null +++ b/sys-apps/sandbox/sandbox-1.2.20_alpha2.ebuild @@ -0,0 +1,133 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.20_alpha2.ebuild,v 1.1 2006/07/11 19:24:01 azarah Exp $ + +# +# don't monkey with this ebuild unless contacting portage devs. +# period. +# + +inherit eutils flag-o-matic eutils toolchain-funcs multilib + +PVER= + +MY_P="${P/_/}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="sandbox'd LD_PRELOAD hack" +HOMEPAGE="http://www.gentoo.org/" +SRC_URI="mirror://gentoo/${MY_P}.tar.bz2 + http://dev.gentoo.org/~azarah/sandbox/${MY_P}.tar.bz2" +if [[ -n ${PVER} ]] ; then + SRC_URI="${SRC_URI} + mirror://gentoo/${MY_P}-patches-${PVER}.tar.bz2 + http://dev.gentoo.org/~azarah/sandbox/${MY_P}-patches-${PVER}.tar.bz2" +fi + +LICENSE="GPL-2" +SLOT="0" +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} + + if [[ -n ${PVER} ]] ; then + cd ${S} + epatch "${WORKDIR}/patch" + fi +} + +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) + has_version '<sys-apps/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="../${MY_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} + CHOST=${OCHOST} +} + +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} + + doenvd "${FILESDIR}/09sandbox" + + keepdir /var/log/sandbox + fowners root:portage /var/log/sandbox + fperms 0770 /var/log/sandbox + + cd ${S} + dodoc AUTHORS ChangeLog NEWS README +} + +pkg_preinst() { + chown root:portage ${IMAGE}/var/log/sandbox + chmod 0770 ${IMAGE}/var/log/sandbox +} |