diff options
author | 2005-07-18 21:24:28 +0000 | |
---|---|---|
committer | 2005-07-18 21:24:28 +0000 | |
commit | 1cbc0b370d50c8659e8db3ebad36f65472f5906c (patch) | |
tree | 9800793cbe23264246b3661abc57cd7753fd3d48 /app-shells/localshell | |
parent | Allow XMMS interface to compile, closes bug #99460. Patch by Morten Cools. (diff) | |
download | historical-1cbc0b370d50c8659e8db3ebad36f65472f5906c.tar.gz historical-1cbc0b370d50c8659e8db3ebad36f65472f5906c.tar.bz2 historical-1cbc0b370d50c8659e8db3ebad36f65472f5906c.zip |
Upstream bump.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'app-shells/localshell')
-rw-r--r-- | app-shells/localshell/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/localshell/Manifest | 4 | ||||
-rw-r--r-- | app-shells/localshell/files/digest-localshell-1.2 | 1 | ||||
-rw-r--r-- | app-shells/localshell/localshell-1.2.ebuild | 28 |
4 files changed, 38 insertions, 2 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/Manifest b/app-shells/localshell/Manifest index 5344c55faf72..ebf7034ba4cd 100644 --- a/app-shells/localshell/Manifest +++ b/app-shells/localshell/Manifest @@ -1,4 +1,6 @@ -MD5 f5aba97d5ab1149b929c01ac04e324cb ChangeLog 515 MD5 ac5ec8314289631741f18801f99c5729 localshell-1.1.ebuild 888 +MD5 249e9764a8fbd166b8dfb633881c03b2 ChangeLog 643 +MD5 a6c7d7d6e72bb3f1d8e6dc31a715242e localshell-1.2.ebuild 890 MD5 21cd68602737d7c996bceabf6e62c468 metadata.xml 223 MD5 3713f4e17225c9144a731ebb5d8075d2 files/digest-localshell-1.1 66 +MD5 aa59b76b25d685845e26819e2ecacf44 files/digest-localshell-1.2 66 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" +} |