blob: 786a4ab0de05cbb89a018340eb0bafc272f1280c (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gozer/gozer-0.7.ebuild,v 1.6 2003/02/13 12:33:49 vapier 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/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/x11
>=media-libs/giblib-1.2.1"
src_compile() {
econf || die
emake || die
}
src_install() {
make prefix=${D}/usr \
mandir=${D}/usr/share/man install || die
dodoc TODO README AUTHORS ChangeLog
}
|