diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-06-14 09:28:11 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-06-14 09:28:11 +0000 |
commit | d0d7a4a45a52936fd8f0874f392a41c27f8ed1ab (patch) | |
tree | b638937ad834ac2cfd94185eed6e09f0bda58aac /net-misc/putty | |
parent | version bump and cleanup (diff) | |
download | historical-d0d7a4a45a52936fd8f0874f392a41c27f8ed1ab.tar.gz historical-d0d7a4a45a52936fd8f0874f392a41c27f8ed1ab.tar.bz2 historical-d0d7a4a45a52936fd8f0874f392a41c27f8ed1ab.zip |
some minor tweaks.
Diffstat (limited to 'net-misc/putty')
-rw-r--r-- | net-misc/putty/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/putty/Manifest | 4 | ||||
-rw-r--r-- | net-misc/putty/putty-20030603.ebuild | 16 |
3 files changed, 18 insertions, 9 deletions
diff --git a/net-misc/putty/ChangeLog b/net-misc/putty/ChangeLog index fed7007341be..c1306eaeab83 100644 --- a/net-misc/putty/ChangeLog +++ b/net-misc/putty/ChangeLog @@ -1,6 +1,11 @@ # 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.1 2003/06/03 15:57:53 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.2 2003/06/14 09:28:04 taviso Exp $ + + 14 Jun 2003; Tavis Ormandy <taviso@gentoo.org> putty-20030603.ebuild: + Fix some typos, minor tweaks, and some more informational messages. + + added a doc USE flag. *putty-20030603 (03 Jun 2003) diff --git a/net-misc/putty/Manifest b/net-misc/putty/Manifest index e0ad0caedcfb..e404d40f48fb 100644 --- a/net-misc/putty/Manifest +++ b/net-misc/putty/Manifest @@ -1,3 +1,3 @@ -MD5 af22b195d693c4b2feeb70dde90baa9a ChangeLog 365 -MD5 ff00efda0a99ae774090bf301966dd15 putty-20030603.ebuild 1189 +MD5 5ee62c5400be2e502660feb530a7635a ChangeLog 533 +MD5 2331e307404d48134de7f1a4d52759be putty-20030603.ebuild 1351 MD5 bcc49e4648a2fa3b47fb42141928e0e0 files/digest-putty-20030603 70 diff --git a/net-misc/putty/putty-20030603.ebuild b/net-misc/putty/putty-20030603.ebuild index efd0f4965b07..2bdb12a2ec0a 100644 --- a/net-misc/putty/putty-20030603.ebuild +++ b/net-misc/putty/putty-20030603.ebuild @@ -1,11 +1,9 @@ # 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.2 2003/06/03 16:15:26 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-20030603.ebuild,v 1.3 2003/06/14 09:28:04 taviso Exp $ cvs_update="20030603" -DESCRIPTION="UNIX port of the famous Windows SSH client" - -inherit ccc +DESCRIPTION="UNIX port of the famous Windows Telnet and SSH client" HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/" SRC_URI="http://cvs.gentoo.org/~taviso/putty-cvs-${cvs_update}.tar.gz" @@ -16,7 +14,7 @@ SLOT="0" KEYWORDS="~x86 ~alpha" -IUSE="" +IUSE="doc" DEPEND="dev-lang/perl >=sys-apps/sed-4 virtual/x11 @@ -27,17 +25,22 @@ RDEPEND="virtual/x11 ~dev-libs/glib-1.2.10 ~x11-libs/gtk+-1.2.10" +inherit ccc + S=${WORKDIR}/${PN} src_compile() { # generate the makefiles + einfo "Generating Makefiles..." ${S}/mkfiles.pl || die "failed to create makefiles." # change the CFLLAGS to those requested by user. + einfo "Setting CFLAGS..." sed -i "s/-O2/${CFLAGS}/g" ${S}/unix/Makefile.gtk # build putty. + einfo "Building putty..." cd ${S}/unix; emake -f Makefile.gtk || die "build failed." } @@ -54,5 +57,6 @@ src_install() { cd ${S} # docs... - dodoc README README.txt LICENSE doc/* + dodoc README README.txt LICENCE CHECKLST.txt LATEST.VER website.url MODULE + use doc && dodoc doc/* } |