blob: 5bf0e4f29b0d3169226bc0b08c6704d6f7bc28cd (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/figlet-221-r1.ebuild,v 1.13 2006/12/20 23:11:41 mr_bones_ Exp $
inherit eutils bash-completion
MY_P=${P/-/}
DESCRIPTION="program for making large letters out of ordinary text"
HOMEPAGE="http://www.figlet.org/"
# Bug 35339 - add more fonts to figlet ebuild
# The fonts are available from the figlet site, but they don't
# have versions so we mirror them ourselves.
SRC_URI="ftp://ftp.figlet.org/pub/figlet/program/unix/${MY_P}.tar.gz
mirror://gentoo/contributed-${P}.tar.gz
mirror://gentoo/ms-dos-${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="alpha amd64 hppa mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
DEPEND=""
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
cp "${WORKDIR}"/contributed/C64-fonts/*.flf fonts/ || die
cp "${WORKDIR}"/contributed/bdffonts/*.flf fonts/ || die
cp "${WORKDIR}"/ms-dos/*.flf fonts/ || die
cp "${WORKDIR}"/contributed/*.flf fonts/ || die
epatch "${FILESDIR}"/${P}-gentoo.diff
sed -i \
-e "s/CFLAGS = -g/CFLAGS = ${CFLAGS}/g" Makefile \
|| die "sed failed"
}
src_compile() {
make clean || die "make clean failed"
emake figlet || die "emake failed"
}
src_install() {
dodir /usr/bin /usr/share/man/man6 || die "dodir failed"
chmod +x figlist showfigfonts
emake \
DESTDIR="${D}"/usr/bin \
MANDIR="${D}"/usr/share/man/man6 \
DEFAULTFONTDIR="${D}"/usr/share/figlet \
install || die "make install failed"
dodoc README figfont.txt
dobashcompletion "${FILESDIR}"/figlet.bashcomp
}
|