pinkbyte-overlay/app-misc/empty/empty-0.6.18b.ebuild

31 lines
590 B
Bash
Raw Normal View History

# Copyright 1999-2012 Gentoo Foundation
2011-09-10 14:55:41 +04:00
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
2011-09-10 14:55:41 +04:00
inherit eutils
DESCRIPTION="small shell-tool similar to expect(1)"
HOMEPAGE="http://empty.sourceforge.net"
SRC_URI="mirror://sourceforge/empty/${P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="examples"
DEPEND=""
RDEPEND="virtual/logger"
src_install() {
# cd ${WORKDIR}/${P}
2011-09-10 14:55:41 +04:00
dobin empty
dodoc README
doman empty.1
if use examples; then
2011-09-10 14:55:41 +04:00
dodir usr/share/doc/${P}/examples/
insinto usr/share/doc/${P}/examples/
doins examples/*
fi
}