diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-07-19 13:25:36 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-07-19 13:25:36 +0000 |
commit | 052e9e01fe4a77c59ba5a56b54a8e8c99e122c95 (patch) | |
tree | 7bac37efcbaa1b4c0b7cf76806f3dca386c760ee /app-misc/tkpasman | |
parent | version bump (diff) | |
download | gentoo-2-052e9e01fe4a77c59ba5a56b54a8e8c99e122c95.tar.gz gentoo-2-052e9e01fe4a77c59ba5a56b54a8e8c99e122c95.tar.bz2 gentoo-2-052e9e01fe4a77c59ba5a56b54a8e8c99e122c95.zip |
version bump
Diffstat (limited to 'app-misc/tkpasman')
-rw-r--r-- | app-misc/tkpasman/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/tkpasman/Manifest | 4 | ||||
-rw-r--r-- | app-misc/tkpasman/files/digest-tkpasman-2.2a | 1 | ||||
-rw-r--r-- | app-misc/tkpasman/tkpasman-2.2a.ebuild | 37 |
4 files changed, 46 insertions, 3 deletions
diff --git a/app-misc/tkpasman/ChangeLog b/app-misc/tkpasman/ChangeLog index bc08dcdef932..fbdc215629b2 100644 --- a/app-misc/tkpasman/ChangeLog +++ b/app-misc/tkpasman/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/tkpasman # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tkpasman/ChangeLog,v 1.1 2003/05/04 19:24:52 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tkpasman/ChangeLog,v 1.2 2003/07/19 13:25:10 aliz Exp $ + +*tkpasman-2.2a (19 Jul 2003) + + 19 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> : + Version bump. Found by Wilbert Berendsen <wilbert@oswf.org> in #22484. *tkpasman-2.2 (04 May 2003) diff --git a/app-misc/tkpasman/Manifest b/app-misc/tkpasman/Manifest index 0ad1d5d2cf8a..1fa121074605 100644 --- a/app-misc/tkpasman/Manifest +++ b/app-misc/tkpasman/Manifest @@ -1,5 +1,5 @@ -MD5 f351e2b6d90385c7d1685e0ac4391d14 ChangeLog 382 +MD5 d9d4e451b9952be285f29cb34a0a25e2 ChangeLog 536 MD5 46efedae56302a830863b394cd4f17af tkpasman-2.2.ebuild 852 -MD5 b62010be296ed0c33bc53d250546bd88 tkpasman-2.2a.ebuild 841 +MD5 cb26a35259c7920080def53c9e30c144 tkpasman-2.2a.ebuild 842 MD5 d76723adc51c452e8b35c96fb5c5eb3e files/digest-tkpasman-2.2 63 MD5 ae240d49b3add0897d8625c6c9d4335c files/digest-tkpasman-2.2a 64 diff --git a/app-misc/tkpasman/files/digest-tkpasman-2.2a b/app-misc/tkpasman/files/digest-tkpasman-2.2a new file mode 100644 index 000000000000..2a043578f24d --- /dev/null +++ b/app-misc/tkpasman/files/digest-tkpasman-2.2a @@ -0,0 +1 @@ +MD5 6e039dfedb2de63cc2c5761041ec55ab TkPasMan-2.2a.tar.gz 31330 diff --git a/app-misc/tkpasman/tkpasman-2.2a.ebuild b/app-misc/tkpasman/tkpasman-2.2a.ebuild new file mode 100644 index 000000000000..afe6a0832122 --- /dev/null +++ b/app-misc/tkpasman/tkpasman-2.2a.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/tkpasman/tkpasman-2.2a.ebuild,v 1.1 2003/07/19 13:25:10 aliz Exp $ + +MY_P="TkPasMan-${PV}" + +SRC_URI="http://www.xs4all.nl/~wbsoft/linux/projects/${MY_P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="~x86" +S=${WORKDIR}/${MY_P} +DESCRIPTION="A useful and reliable personal password manager, written in Tcl/Tk" +SLOT="0" +IUSE="ssl" + +DEPEND=">=dev-lang/tcl-8.3 + >=sys-apps/sed-4" + +RDEPEND="ssl? ( dev-libs/openssl ) + virtual/x11 + >=dev-lang/tk-8.3 + >=dev-lang/tcl-8.3" + +src_unpack() { + unpack ${A} ; cd ${S} + + use ssl || sed -i "s:^USE_OPENSSL=true:USE_OPENSSL=false:g" config +} + +src_compile() { + make || die +} + +src_install() { + dobin tkpasman + dodoc README ChangeLog TODO WARNING INSTALL COPYING +} + |