diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-03-13 09:04:33 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-03-13 09:04:33 +0000 |
commit | 5191ba223a0c05adf48e90f2114e22424033de8d (patch) | |
tree | 92394389df94fecc24fa081aad38d0db2334f3e0 /app-text/t1utils | |
parent | mask galeon until mozilla 0.9.9 is fixed (diff) | |
download | historical-5191ba223a0c05adf48e90f2114e22424033de8d.tar.gz historical-5191ba223a0c05adf48e90f2114e22424033de8d.tar.bz2 historical-5191ba223a0c05adf48e90f2114e22424033de8d.zip |
New version of package available.
Diffstat (limited to 'app-text/t1utils')
-rw-r--r-- | app-text/t1utils/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/t1utils/files/digest-t1utils-1.25 | 1 | ||||
-rw-r--r-- | app-text/t1utils/t1utils-1.25.ebuild | 26 |
3 files changed, 37 insertions, 1 deletions
diff --git a/app-text/t1utils/ChangeLog b/app-text/t1utils/ChangeLog index 0512d53c6174..f39d3eb1db58 100644 --- a/app-text/t1utils/ChangeLog +++ b/app-text/t1utils/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for app-text/t1utils # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/t1utils/ChangeLog,v 1.1 2002/02/01 21:53:10 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/t1utils/ChangeLog,v 1.2 2002/03/13 09:04:33 seemant Exp $ + +*t1utils-1.25 (12 Mar 2002) + + 12 Mar 2002; Seemant Kulleen <seemant@gentoo.org> t1utils-1.25 : + + Updated version. This involved copying over the 1.23 ebuild and making + just some modifications: updated copyright year, made author's name Daniel + Robbins, instead of "Your Name Here", and changed try clauses to "|| die" + clauses instead. Update submitted by Matthew Kennedy. *t1utils-1.23 (1 Feb 2002) diff --git a/app-text/t1utils/files/digest-t1utils-1.25 b/app-text/t1utils/files/digest-t1utils-1.25 new file mode 100644 index 000000000000..567a1754be83 --- /dev/null +++ b/app-text/t1utils/files/digest-t1utils-1.25 @@ -0,0 +1 @@ +MD5 91392501989bbbc959703f46c2619f39 t1utils-1.25.tar.gz 74212 diff --git a/app-text/t1utils/t1utils-1.25.ebuild b/app-text/t1utils/t1utils-1.25.ebuild new file mode 100644 index 000000000000..a20072c36285 --- /dev/null +++ b/app-text/t1utils/t1utils-1.25.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-text/t1utils/t1utils-1.25.ebuild,v 1.1 2002/03/13 09:04:33 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Type 1 Font utilities" +SRC_URI="http://www.lcdf.org/~eddietwo/type/${P}.tar.gz" +HOMEPAGE="http://www.lcdf.org/~eddietwo/" + +DEPEND="virtual/glibc" + +src_compile() { + + ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} || die + emake || die + +} + +src_install () { + + make DESTDIR=${D} install || die + dodoc NEWS README + +} + |