summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2005-07-18 21:24:28 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2005-07-18 21:24:28 +0000
commitbf66f5fb766f47ca1de81c2c647e7ddee2dd3552 (patch)
treea4e4ef09df8d43bafb0b02c8f50089a058518a4e /app-shells
parentAllow XMMS interface to compile, closes bug #99460. Patch by Morten Cools. (diff)
downloadgentoo-2-bf66f5fb766f47ca1de81c2c647e7ddee2dd3552.tar.gz
gentoo-2-bf66f5fb766f47ca1de81c2c647e7ddee2dd3552.tar.bz2
gentoo-2-bf66f5fb766f47ca1de81c2c647e7ddee2dd3552.zip
Upstream bump.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/localshell/ChangeLog7
-rw-r--r--app-shells/localshell/files/digest-localshell-1.21
-rw-r--r--app-shells/localshell/localshell-1.2.ebuild28
3 files changed, 35 insertions, 1 deletions
diff --git a/app-shells/localshell/ChangeLog b/app-shells/localshell/ChangeLog
index 43d64409b133..8844b00bb255 100644
--- a/app-shells/localshell/ChangeLog
+++ b/app-shells/localshell/ChangeLog
@@ -1,10 +1,15 @@
# ChangeLog for app-shells/localshell
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/localshell/ChangeLog,v 1.2 2005/07/18 11:49:23 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/localshell/ChangeLog,v 1.3 2005/07/18 21:24:28 robbat2 Exp $
18 Jul 2005; David Holm <dholm@gentoo.org> localshell-1.1.ebuild:
Added to ~ppc.
+*localshell-1.2 (18 Jul 2005)
+
+ 18 Jul 2005; Robin H. Johnson <robbat2@gentoo.org> +localshell-1.2.ebuild:
+ Upstream bump.
+
*localshell-1.1 (18 Jul 2005)
18 Jul 2005; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml,
diff --git a/app-shells/localshell/files/digest-localshell-1.2 b/app-shells/localshell/files/digest-localshell-1.2
new file mode 100644
index 000000000000..cfe38dd61240
--- /dev/null
+++ b/app-shells/localshell/files/digest-localshell-1.2
@@ -0,0 +1 @@
+MD5 1075f282c9c9c93305407a781c438da0 localshell-1.2.tar.bz2 96626
diff --git a/app-shells/localshell/localshell-1.2.ebuild b/app-shells/localshell/localshell-1.2.ebuild
new file mode 100644
index 000000000000..8a0599a47320
--- /dev/null
+++ b/app-shells/localshell/localshell-1.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/localshell/localshell-1.2.ebuild,v 1.1 2005/07/18 21:24:28 robbat2 Exp $
+
+DESCRIPTION="Localshell allows per-user/group local control of shell execution."
+HOMEPAGE="http://research.iat.sfu.ca/custom-software/localshell/"
+SRC_URI="${HOMEPAGE}/${P}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+DEPEND="virtual/libc"
+#RDEPEND=""
+
+src_compile() {
+ # this is a shell, it needs to be in /bin
+ econf --bindir=/bin --sysconfdir=/etc || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake install DESTDIR="${D}" || die "emake install failed"
+}
+
+pkg_postinst() {
+ einfo "Remember to add /bin/localshell to /etc/shells and create"
+ einfo "/etc/localshell.conf based on the included configuration examples"
+}