diff options
author | 2003-05-04 19:24:52 +0000 | |
---|---|---|
committer | 2003-05-04 19:24:52 +0000 | |
commit | 44abb9a99692b1ab35767e6215d7b69174146d58 (patch) | |
tree | 3ec9477eb5c9ee5849f478cd16e963cf1e534c9c /app-misc/tkpasman/tkpasman-2.2.ebuild | |
parent | cleanup (diff) | |
download | gentoo-2-44abb9a99692b1ab35767e6215d7b69174146d58.tar.gz gentoo-2-44abb9a99692b1ab35767e6215d7b69174146d58.tar.bz2 gentoo-2-44abb9a99692b1ab35767e6215d7b69174146d58.zip |
Initial import.
Diffstat (limited to 'app-misc/tkpasman/tkpasman-2.2.ebuild')
-rw-r--r-- | app-misc/tkpasman/tkpasman-2.2.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-misc/tkpasman/tkpasman-2.2.ebuild b/app-misc/tkpasman/tkpasman-2.2.ebuild new file mode 100644 index 000000000000..7ee901ea5c46 --- /dev/null +++ b/app-misc/tkpasman/tkpasman-2.2.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.2.ebuild,v 1.1 2003/05/04 19:24:52 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} + +IUSE="ssl" + +DEPEND=">=dev-lang/tcl-8.3" + +RDEPEND="ssl? ( dev-libs/openssl ) + virtual/x11 + >=dev-lang/tk-8.3 + >=dev-lang/tcl-8.3" + +src_unpack() { + unpack ${A} + cd ${S} + + cp config config.old + use ssl || sed "s:^USE_OPENSSL=true:USE_OPENSSL=false:g" config.old >config +} + +src_compile() { + make || die +} + +src_install() { + dobin tkpasman + dodoc README ChangeLog TODO WARNING INSTALL COPYING +} + |