diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-09 00:13:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-09 00:13:25 +0000 |
commit | 12b827553257f37ebfbfec2ab6c5accbc5055ffe (patch) | |
tree | 40c295eba267fb13d8636deaa977544573c1b38d /app-shells/sandboxshell | |
parent | old (diff) | |
download | gentoo-2-12b827553257f37ebfbfec2ab6c5accbc5055ffe.tar.gz gentoo-2-12b827553257f37ebfbfec2ab6c5accbc5055ffe.tar.bz2 gentoo-2-12b827553257f37ebfbfec2ab6c5accbc5055ffe.zip |
Fix config file naming #169968 by Ali Polatel.
(Portage version: 2.1.2.1-r1)
Diffstat (limited to 'app-shells/sandboxshell')
-rw-r--r-- | app-shells/sandboxshell/ChangeLog | 10 | ||||
-rw-r--r-- | app-shells/sandboxshell/files/digest-sandboxshell-0.3-r3 | 0 | ||||
-rw-r--r-- | app-shells/sandboxshell/sandboxshell-0.3-r3.ebuild | 30 |
3 files changed, 38 insertions, 2 deletions
diff --git a/app-shells/sandboxshell/ChangeLog b/app-shells/sandboxshell/ChangeLog index 43fb84073c87..310a0d31ffb5 100644 --- a/app-shells/sandboxshell/ChangeLog +++ b/app-shells/sandboxshell/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/sandboxshell -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sandboxshell/ChangeLog,v 1.10 2006/11/05 10:40:05 betelgeuse Exp $ +# 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 $ + +*sandboxshell-0.3-r3 (09 Mar 2007) + + 09 Mar 2007; Mike Frysinger <vapier@gentoo.org> + +sandboxshell-0.3-r3.ebuild: + Fix config file naming #169968 by Ali Polatel. *sandboxshell-0.3-r2 (05 Nov 2006) diff --git a/app-shells/sandboxshell/files/digest-sandboxshell-0.3-r3 b/app-shells/sandboxshell/files/digest-sandboxshell-0.3-r3 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/app-shells/sandboxshell/files/digest-sandboxshell-0.3-r3 diff --git a/app-shells/sandboxshell/sandboxshell-0.3-r3.ebuild b/app-shells/sandboxshell/sandboxshell-0.3-r3.ebuild new file mode 100644 index 000000000000..d777369291c1 --- /dev/null +++ b/app-shells/sandboxshell/sandboxshell-0.3-r3.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-r3.ebuild,v 1.1 2007/03/09 00:13:25 vapier 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 +} |