diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-08-05 10:05:36 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-08-05 10:05:36 +0000 |
commit | 2a0c35824a3d47a8d9438f1c57a8e9b6ba6e1744 (patch) | |
tree | 75b4d32d6d03bde13bae21b602cb12d2f195006d /app-shells/sandboxshell | |
parent | Adding revision that has no tracker support and can be stabilized, as tracker... (diff) | |
download | gentoo-2-2a0c35824a3d47a8d9438f1c57a8e9b6ba6e1744.tar.gz gentoo-2-2a0c35824a3d47a8d9438f1c57a8e9b6ba6e1744.tar.bz2 gentoo-2-2a0c35824a3d47a8d9438f1c57a8e9b6ba6e1744.zip |
Revision bump to push out fixes for baselayout-2 users.
(Portage version: 2.1.3)
Diffstat (limited to 'app-shells/sandboxshell')
-rw-r--r-- | app-shells/sandboxshell/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/sandboxshell/files/digest-sandboxshell-0.3-r4 | 0 | ||||
-rw-r--r-- | app-shells/sandboxshell/sandboxshell-0.3-r4.ebuild | 30 |
3 files changed, 37 insertions, 1 deletions
diff --git a/app-shells/sandboxshell/ChangeLog b/app-shells/sandboxshell/ChangeLog index 310a0d31ffb5..b5fb0c0f635a 100644 --- a/app-shells/sandboxshell/ChangeLog +++ b/app-shells/sandboxshell/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/sandboxshell # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sandboxshell/ChangeLog,v 1.11 2007/03/09 00:13:25 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/sandboxshell/ChangeLog,v 1.12 2007/08/05 10:05:36 betelgeuse Exp $ + +*sandboxshell-0.3-r4 (05 Aug 2007) + + 05 Aug 2007; Petteri Räty <betelgeuse@gentoo.org> + +sandboxshell-0.3-r4.ebuild: + Revision bump to push out fixes for baselayout-2 users. *sandboxshell-0.3-r3 (09 Mar 2007) diff --git a/app-shells/sandboxshell/files/digest-sandboxshell-0.3-r4 b/app-shells/sandboxshell/files/digest-sandboxshell-0.3-r4 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/app-shells/sandboxshell/files/digest-sandboxshell-0.3-r4 diff --git a/app-shells/sandboxshell/sandboxshell-0.3-r4.ebuild b/app-shells/sandboxshell/sandboxshell-0.3-r4.ebuild new file mode 100644 index 000000000000..498e1c10733a --- /dev/null +++ b/app-shells/sandboxshell/sandboxshell-0.3-r4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/sandboxshell/sandboxshell-0.3-r4.ebuild,v 1.1 2007/08/05 10:05:36 betelgeuse Exp $ + +inherit eutils + +DESCRIPTION="launch a sandboxed shell ... useful for debugging ebuilds" +HOMEPAGE="http://wh0rd.org/" +SRC_URI="" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +DEPEND="" + +# Portage 2.1.1 changes the /var/tmp/portage structure from <pkg> to <cat>/<pkg> +RDEPEND=">sys-apps/portage-2.1.1 + app-shells/bash" + +S=${WORKDIR} + +src_install() { + dobin "${FILESDIR}"/sandboxshell || die + doman "${FILESDIR}"/sandboxshell.1 + insinto /etc + newins "${FILESDIR}"/sandboxshell-r1.conf sandboxshell.conf + make_desktop_entry /usr/bin/sandboxshell +} |