diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-02-17 02:09:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-02-17 02:09:23 +0000 |
commit | 976b080e34e2cd3ec602b10840bcc39308c13765 (patch) | |
tree | d2e96e9cb69b0ea7d21e0b01f2016a38ebf5e6ec /dev-tcltk/expect-lite/expect-lite-4.2.2.ebuild | |
parent | Improve comment wrt bug #398825 (diff) | |
download | gentoo-2-976b080e34e2cd3ec602b10840bcc39308c13765.tar.gz gentoo-2-976b080e34e2cd3ec602b10840bcc39308c13765.tar.bz2 gentoo-2-976b080e34e2cd3ec602b10840bcc39308c13765.zip |
Version bump.
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/expect-lite/expect-lite-4.2.2.ebuild')
-rw-r--r-- | dev-tcltk/expect-lite/expect-lite-4.2.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-tcltk/expect-lite/expect-lite-4.2.2.ebuild b/dev-tcltk/expect-lite/expect-lite-4.2.2.ebuild new file mode 100644 index 000000000000..43dfafb3a955 --- /dev/null +++ b/dev-tcltk/expect-lite/expect-lite-4.2.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect-lite/expect-lite-4.2.2.ebuild,v 1.1 2012/02/17 02:09:23 vapier Exp $ + +DESCRIPTION="quick and easy command line automation tool built on top of expect" +HOMEPAGE="http://expect-lite.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug examples" + +RDEPEND="dev-tcltk/expect + debug? ( dev-tcltk/tclx )" + +S=${WORKDIR}/${PN}.proj + +src_install() { + dobin ${PN} || die + doman man/* || die + dodoc bashrc ChangeLog README + dohtml Docs/* + + if use examples ; then + docinto examples + dodoc Examples/* || die + fi +} |