blob: 124bc5d499705c9082cc42915f29412eb23941e6 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gozer/gozer-0.7.ebuild,v 1.1 2002/06/03 22:28:32 stroke Exp $
S=${WORKDIR}/${P}
DESCRIPTION="tool for rendering arbitary text as graphics, using ttfs and styles"
SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz"
HOMEPAGE="http://www.linuxbrit.co.uk/"
LICENSE="GPL-2"
SLOT="0"
DEPEND=">=x11-base/xfree-4.0.0
>=media-libs/giblib-1.2.1"
src_compile() {
./configure --infodir=/usr/share/info \
--mandir=/usr/share/man \
--prefix=/usr --host=${CHOST} || die
emake || die
}
src_install() {
make prefix=${D}/usr \
mandir=${D}/usr/share/man install || die
dodoc TODO README AUTHORS ChangeLog
}
|