diff options
author | Konstantin V. Arkhipov <voxus@gentoo.org> | 2004-11-04 11:25:02 +0000 |
---|---|---|
committer | Konstantin V. Arkhipov <voxus@gentoo.org> | 2004-11-04 11:25:02 +0000 |
commit | af33396abd766e3edbb7c6b4bea9a0724392d7d5 (patch) | |
tree | df35f600c61d57d6df13c49b0ee96d46ab30c73c /sys-cluster | |
parent | Stable on x86, alpha and ppc. (Manifest recommit) (diff) | |
download | gentoo-2-af33396abd766e3edbb7c6b4bea9a0724392d7d5.tar.gz gentoo-2-af33396abd766e3edbb7c6b4bea9a0724392d7d5.tar.bz2 gentoo-2-af33396abd766e3edbb7c6b4bea9a0724392d7d5.zip |
closing #70013
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/pconsole/ChangeLog | 8 | ||||
-rw-r--r-- | sys-cluster/pconsole/Manifest | 16 | ||||
-rw-r--r-- | sys-cluster/pconsole/files/digest-pconsole-1.0-r1 | 1 | ||||
-rw-r--r-- | sys-cluster/pconsole/pconsole-1.0-r1.ebuild | 33 |
4 files changed, 45 insertions, 13 deletions
diff --git a/sys-cluster/pconsole/ChangeLog b/sys-cluster/pconsole/ChangeLog index 3878654e9e6c..99d5b59be0e0 100644 --- a/sys-cluster/pconsole/ChangeLog +++ b/sys-cluster/pconsole/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-cluster/pconsole # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pconsole/ChangeLog,v 1.4 2004/09/05 08:21:45 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pconsole/ChangeLog,v 1.5 2004/11/04 11:25:02 voxus Exp $ + +*pconsole-1.0-r1 (04 Nov 2004) + + 04 Nov 2004; Konstantin Arkhipov <voxus@gentoo.org> + +pconsole-1.0-r1.ebuild: + Fixed #70013, thanks to Otto Tronarp. 05 Sep 2004; Sven Wegener <swegener@gentoo.org> : Fixed ChangeLog header. diff --git a/sys-cluster/pconsole/Manifest b/sys-cluster/pconsole/Manifest index 50179761db29..1c6bba69113f 100644 --- a/sys-cluster/pconsole/Manifest +++ b/sys-cluster/pconsole/Manifest @@ -1,15 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 beb9efce81ae2c582a621528fc783095 metadata.xml 373 +MD5 e409371e13bac4ff8ac18ed6d99f2915 pconsole-1.0-r1.ebuild 849 MD5 92fed4f42d2a5627a05311429330e111 pconsole-1.0.ebuild 842 MD5 b8d8163a9bb7cf2ef4dc42d2f0831832 ChangeLog 667 -MD5 3cd29c35b2fc6d527133bbb43884ad91 files/digest-pconsole-1.0 64 +MD5 beb9efce81ae2c582a621528fc783095 metadata.xml 373 +MD5 3cd29c35b2fc6d527133bbb43884ad91 files/digest-pconsole-1.0-r1 64 MD5 831ce0c1ca12bf4f0ee512f433507741 files/pconsole-1.0-exit-warn.patch 248 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.6 (GNU/Linux) - -iD8DBQFBOsygI1lqEGTUzyQRAvh3AJ4o5OyiwXqBrxbGoz5NvQmd9twVuQCeKMdA -EvDI6Y0ROLMs9TERXmsq+Sw= -=pTla ------END PGP SIGNATURE----- +MD5 3cd29c35b2fc6d527133bbb43884ad91 files/digest-pconsole-1.0 64 diff --git a/sys-cluster/pconsole/files/digest-pconsole-1.0-r1 b/sys-cluster/pconsole/files/digest-pconsole-1.0-r1 new file mode 100644 index 000000000000..c5452b3be151 --- /dev/null +++ b/sys-cluster/pconsole/files/digest-pconsole-1.0-r1 @@ -0,0 +1 @@ +MD5 b0a170284c3272e2e403fc8f2ccfdd53 pconsole-1.0.tar.gz 215426 diff --git a/sys-cluster/pconsole/pconsole-1.0-r1.ebuild b/sys-cluster/pconsole/pconsole-1.0-r1.ebuild new file mode 100644 index 000000000000..d5ea73cf5c57 --- /dev/null +++ b/sys-cluster/pconsole/pconsole-1.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pconsole/pconsole-1.0-r1.ebuild,v 1.1 2004/11/04 11:25:02 voxus Exp $ + +inherit eutils + +DESCRIPTION="Tool for managing multiple xterms simultaneously." +HOMEPAGE="http://www.heiho.net/pconsole/" +SRC_URI="http://www.xs4all.nl/~walterj/pconsole/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" +DEPEND="virtual/ssh" + +src_compile() { + epatch ${FILESDIR}/${P}-exit-warn.patch || einfo "Never mind.." + ./configure --prefix=${D}/usr + emake || die +} + +src_install() { + dobin pconsole pconsole.sh ssh.sh + fperms 4111 /usr/bin/pconsole + dodoc ChangeLog public_html/pconsole.html README.pconsole +} + +pkg_postinst() { + ewarn + ewarn "Warning:" + ewarn "pconsole installed with suid root!" + ewarn +} |