| 1 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect-lite/expect-lite-4.0.3.ebuild,v 1.1 2011/02/23 22:37:44 vapier Exp $
|
| 4 |
|
| 5 |
DESCRIPTION="quick and easy command line automation tool built on top of expect"
|
| 6 |
HOMEPAGE="http://expect-lite.sourceforge.net/"
|
| 7 |
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz"
|
| 8 |
|
| 9 |
LICENSE="BSD"
|
| 10 |
SLOT="0"
|
| 11 |
KEYWORDS="amd64 x86"
|
| 12 |
IUSE="debug examples"
|
| 13 |
|
| 14 |
RDEPEND="dev-tcltk/expect
|
| 15 |
debug? ( dev-tcltk/tclx )"
|
| 16 |
|
| 17 |
S=${WORKDIR}/${PN}.proj
|
| 18 |
|
| 19 |
src_install() {
|
| 20 |
dobin ${PN} || die
|
| 21 |
doman man/* || die
|
| 22 |
dodoc bashrc ChangeLog README
|
| 23 |
dohtml Docs/*
|
| 24 |
|
| 25 |
if use examples ; then
|
| 26 |
docinto examples
|
| 27 |
dodoc Examples/* || die
|
| 28 |
fi
|
| 29 |
}
|