add ebuilds from work's overlay

This commit is contained in:
2011-09-10 14:55:41 +04:00
parent 739f47081b
commit 7dab561009
5 changed files with 85 additions and 0 deletions

2
app-misc/empty/Manifest Normal file
View File

@ -0,0 +1,2 @@
DIST empty-0.6.18b.tgz 16166 RMD160 8c49eb2d2da2388386bd801f495b6645ee93298c SHA1 29f1ecda248bdec7998d7211bf3866d62ce93e06 SHA256 8ea08afd6b637c49125b2fa6f0b571fd72b3aa8547a8834266fcbf0302d1efd3
EBUILD empty-0.6.18b.ebuild 581 RMD160 6df632d35408c61542004f76e81b051fbf01c344 SHA1 b705bd7bce811fcbc1ecf82da67e63c2636e5784 SHA256 e9474aa979f14fa637c181e7b67d67cb23a812726462c91662bab366bb3e32b0

View File

@ -0,0 +1,29 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
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}
dobin empty
dodoc README
doman empty.1
if use examples; then
dodir usr/share/doc/${P}/examples/
insinto usr/share/doc/${P}/examples/
doins examples/*
fi
}