# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: # Author: Matthew Kennedy # /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.4 2002/03/12 16:05:09 tod Exp S=${WORKDIR}/${P} DESCRIPTION="A collection of miscellaneous Gentoo Linux logos and artwork" # Hopefully, this ebuild will grow to include more graphics as they # become available. A subdirectory structure might be necessary if the # collection of graphics can be catagorized. SRC_URI="" # "NSRC_URI" -- think Not-SRC_URI. Because the URLs mentioned in # NSRC_URI are not source they don't need to downloaded as per the # usual sequence before source is compiled. The original SRC_URI is # still available for artwork that might be downloaded inside # tar-balls. NSRC_URI="http://www.gentoo.org/images/powered-small.png http://www.gentoo.org/images/powered.png http://www.gentoo.org/images/powered-big.png" HOMEPAGE="http://www.gentoo.org/index-graphics.html" # No real dependencies here. It is conceivable tools like ImageMagick # could be used as dependencies to scale or adjust images though. DEPEND="" src_unpack () { # Override the unpacking process true } src_install () { wget -N $NSRC_URI dodir /usr/share/pixmaps/${PN} insinto /usr/share/pixmaps/${PN} doins powered-small.png doins powered.png doins powered-big.png }