blob: da7a840dd076a764932548145830130a507d5214 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/figlet-22.ebuild,v 1.6 2002/10/17 00:14:17 vapier Exp $
S=${WORKDIR}/${PN}${PV}
DESCRIPTION="FIGlet is a program for making large letters out of ordinary text"
SRC_URI="ftp://ftp.plig.org/pub/figlet/program/unix/${PN}${PV}.tar.gz"
HOMEPAGE="http://st-www.cs.uiuc.edu/users/chai/figlet.html"
SLOT="0"
LICENSE="Artistic"
KEYWORDS="x86 sparc64"
DEPEND="virtual/glibc"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
patch -p1 < ${FILESDIR}/${PF}-gentoo.diff || die
}
src_compile() {
make clean || die
make figlet || die
}
src_install() {
dodir /usr/bin /usr/share/man/man6
make \
DESTDIR=${D}/usr/bin \
MANDIR=${D}/usr/share/man/man6 \
DEFAULTFONTDIR=${D}/usr/share/figlet \
install || die
dodoc Artistic-license.txt FTP-NOTE README showfigfonts figmagic figfont.txt
}
|