diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-06-22 12:35:21 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-06-22 12:35:21 +0000 |
commit | c802a250f84c07638bd8b1f21b64f0df3a45a8d9 (patch) | |
tree | 5c27a1a9b36795062c359bc9bad65d652747b4dd /net-misc | |
parent | reverting the x86 mess that amd64 made in dev-python. basically just (diff) | |
download | gentoo-2-c802a250f84c07638bd8b1f21b64f0df3a45a8d9.tar.gz gentoo-2-c802a250f84c07638bd8b1f21b64f0df3a45a8d9.tar.bz2 gentoo-2-c802a250f84c07638bd8b1f21b64f0df3a45a8d9.zip |
marking stable, and ading a warning about no unix 98 pty's breaking pterm
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/putty/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/putty/Manifest | 4 | ||||
-rw-r--r-- | net-misc/putty/putty-20030603.ebuild | 12 |
3 files changed, 16 insertions, 6 deletions
diff --git a/net-misc/putty/ChangeLog b/net-misc/putty/ChangeLog index c1306eaeab83..2161aa622238 100644 --- a/net-misc/putty/ChangeLog +++ b/net-misc/putty/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/putty # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.2 2003/06/14 09:28:04 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.3 2003/06/22 12:35:13 taviso Exp $ + + 22 Jun 2003; Tavis Ormandy <taviso@gentoo.org> putty-20030603.ebuild: + adding a warning about unix98 pty's and pterm + marking stable 14 Jun 2003; Tavis Ormandy <taviso@gentoo.org> putty-20030603.ebuild: Fix some typos, minor tweaks, and some more informational messages. diff --git a/net-misc/putty/Manifest b/net-misc/putty/Manifest index e404d40f48fb..0be56cef4256 100644 --- a/net-misc/putty/Manifest +++ b/net-misc/putty/Manifest @@ -1,3 +1,3 @@ -MD5 5ee62c5400be2e502660feb530a7635a ChangeLog 533 -MD5 2331e307404d48134de7f1a4d52759be putty-20030603.ebuild 1351 +MD5 03e5b02de5daa92423cb6756bc39ab50 ChangeLog 672 +MD5 7d76a1d457286c3aab8e60ea0be3dd57 putty-20030603.ebuild 1471 MD5 bcc49e4648a2fa3b47fb42141928e0e0 files/digest-putty-20030603 70 diff --git a/net-misc/putty/putty-20030603.ebuild b/net-misc/putty/putty-20030603.ebuild index 2bdb12a2ec0a..71de346503f8 100644 --- a/net-misc/putty/putty-20030603.ebuild +++ b/net-misc/putty/putty-20030603.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-20030603.ebuild,v 1.3 2003/06/14 09:28:04 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-20030603.ebuild,v 1.4 2003/06/22 12:35:13 taviso Exp $ cvs_update="20030603" DESCRIPTION="UNIX port of the famous Windows Telnet and SSH client" @@ -12,7 +12,7 @@ LICENSE="MIT" SLOT="0" -KEYWORDS="~x86 ~alpha" +KEYWORDS="x86 alpha" IUSE="doc" DEPEND="dev-lang/perl @@ -35,7 +35,7 @@ src_compile() { einfo "Generating Makefiles..." ${S}/mkfiles.pl || die "failed to create makefiles." - # change the CFLLAGS to those requested by user. + # change the CFLAGS to those requested by user. einfo "Setting CFLAGS..." sed -i "s/-O2/${CFLAGS}/g" ${S}/unix/Makefile.gtk @@ -59,4 +59,10 @@ src_install() { # docs... dodoc README README.txt LICENCE CHECKLST.txt LATEST.VER website.url MODULE use doc && dodoc doc/* + + if test ! -c /dev/ptmx; then + ewarn + ewarn "The pterm application requires UNIX98 PTY support to operate." + ewarn + fi } |