# Copyright 1999-2005 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.15 2005/04/21 19:09:32 blubb 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="x86 ppc sparc mips amd64 ppc64" IUSE="" DEPEND="virtual/libc" src_compile() { sed -i -e "s/#include /&\n#include /" delay.c ./configure \ --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 }