# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: initial version Ron Simpkin doobedoobedo@quake3world.com IUSE="" DESCRIPTION="Stamps for use with tuxpaint" HOMEPAGE="http://www.newbreedsoftware.com/tuxpaint/" DEPEND="media-gfx/tuxpaint" SRC_URI="mirror://sourceforge/tuxpaint/tuxpaint-stamps-2003.01.28.tar.gz" S=${WORKDIR}/${P} SLOT="0" LICENSE="GPL" KEYWORDS="x86 ppc ~sparc ~alpha" src_unpack() { unpack ${A} } src_install () { for stamp in `find stamps`; do if [ -d ${stamp} ] then dodir /usr/share/tuxpaint/${stamp} insinto /usr/share/tuxpaint/${stamp} else doins ${stamp} fi done for doc in `find docs`; do if [ -f ${doc} ] then dodoc ${doc} fi done }