# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/delay/delay-1.6.ebuild,v 1.16 2008/03/26 18:47:31 armin76 Exp $ DESCRIPTION="sleeplike program that counts down the number of seconds specified" HOMEPAGE="http://onegeek.org/~tom/software/delay/" SRC_URI="http://onegeek.org/~tom/software/delay/dl/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ia64 mips ppc ppc64 sparc x86" IUSE="" DEPEND="virtual/libc" src_compile() { sed -i -e "s/#include /&\n#include /" delay.c econf \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" emake || die } src_install() { make DESTDIR=${D} install || die dodoc ChangeLog README INSTALL }