diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-03 22:28:32 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-03 22:28:32 +0000 |
commit | 1a1fb6fee1950a5d87926756a7bc1590b7bfa4bb (patch) | |
tree | 8d43d35a8fafe13092383a8e5a134bac6f69249a /media-gfx | |
parent | Fixes #2211. (diff) | |
download | historical-1a1fb6fee1950a5d87926756a7bc1590b7bfa4bb.tar.gz historical-1a1fb6fee1950a5d87926756a7bc1590b7bfa4bb.tar.bz2 historical-1a1fb6fee1950a5d87926756a7bc1590b7bfa4bb.zip |
New package, added.
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/gozer/ChangeLog | 14 | ||||
-rw-r--r-- | media-gfx/gozer/files/digest-gozer-0.7 | 1 | ||||
-rw-r--r-- | media-gfx/gozer/gozer-0.7.ebuild | 33 |
3 files changed, 48 insertions, 0 deletions
diff --git a/media-gfx/gozer/ChangeLog b/media-gfx/gozer/ChangeLog new file mode 100644 index 000000000000..c350e8409327 --- /dev/null +++ b/media-gfx/gozer/ChangeLog @@ -0,0 +1,14 @@ +# ChangeLog for media-gfx/gozer +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gozer/ChangeLog,v 1.1 2002/06/03 22:28:32 stroke Exp $ + +*gozer-0.7 (4 June 2002) + + 4 June 2002; Gabriele Giorgetti <stroke@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. + diff --git a/media-gfx/gozer/files/digest-gozer-0.7 b/media-gfx/gozer/files/digest-gozer-0.7 new file mode 100644 index 000000000000..04dc430e0a23 --- /dev/null +++ b/media-gfx/gozer/files/digest-gozer-0.7 @@ -0,0 +1 @@ +MD5 6eaa33a759d9c15967e0b7f008cc3d55 gozer-0.7.tar.gz 103545 diff --git a/media-gfx/gozer/gozer-0.7.ebuild b/media-gfx/gozer/gozer-0.7.ebuild new file mode 100644 index 000000000000..124bc5d49970 --- /dev/null +++ b/media-gfx/gozer/gozer-0.7.ebuild @@ -0,0 +1,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 +} + |