diff options
Diffstat (limited to 'media-fonts/cheapskatefonts/cheapskatefonts-1.0.ebuild')
-rw-r--r-- | media-fonts/cheapskatefonts/cheapskatefonts-1.0.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/media-fonts/cheapskatefonts/cheapskatefonts-1.0.ebuild b/media-fonts/cheapskatefonts/cheapskatefonts-1.0.ebuild new file mode 100644 index 00000000000..34b974a40cc --- /dev/null +++ b/media-fonts/cheapskatefonts/cheapskatefonts-1.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit font + +DESCRIPTION="Dustismo's decorative font collection" +HOMEPAGE="http://www.dustismo.com/site/fonts.html" +SRC_URI="http://www.dustismo.com/fonts/Domestic_Manners.zip + http://www.dustismo.com/fonts/PenguinAttack.zip + http://www.dustismo.com/fonts/Dustismo.zip + http://www.dustismo.com/fonts/El_Abogado_Loco.zip + http://www.dustismo.com/fonts/Progenisis.zip + http://www.dustismo.com/fonts/flatline.zip + http://www.dustismo.com/fonts/MarkedFool.zip + http://www.dustismo.com/fonts/ItWasntMe.zip + http://www.dustismo.com/fonts/balker.zip + http://www.dustismo.com/fonts/Swift.zip + http://www.dustismo.com/fonts/Wargames.zip + http://www.dustismo.com/fonts/Winks.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ~ppc s390 sh sparc x86 ~x86-fbsd" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S=${WORKDIR} +FONT_S=${S} +FONT_SUFFIX="ttf" + +src_unpack() { + for zip in ${A} ; do + echo ">>> Unpacking ${zip} to ${WORKDIR}" + unzip -n ${DISTDIR}/${zip} > /dev/null \ + || die "failed to unpack ${zip}" + done +} |