blob: bee40e3bb5cb9a6bd02fe16a3fb61e6a8a2eba43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/cheapskatefonts/cheapskatefonts-1.0.ebuild,v 1.2 2005/05/21 15:18:08 blubb Exp $
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="~x86 ~amd64"
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
}
|