# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/net-misc/kpopper/kpopper-1.0.ebuild,v 1.11 2003/02/13 14:57:39 vapier Exp $ inherit eutils LICENSE="GPL-2" DESCRIPTION="A command-line tool for taking JPEG snapshots of VNC servers" SRC_URI="mirror://sourceforge/vncsnapshot/vncsnapshot-1.1-src.tar.bz2" HOMEPAGE="http://vncsnapshot.sourceforge.net/" KEYWORDS="x86 sparc ppc" # no configure for this puppy src_compile() { [ -n "$PATCHES" ] && for p in $PATCHES; do patch <$p; done make || die } # likewise, no make install (we're real Unix hackers, we are) src_install() { dobin vncsnapshot || die cp vncsnapshot.man1 vncsnapshot.1 doman vncsnapshot.1 }