summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-03-13 09:04:33 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-03-13 09:04:33 +0000
commitc4b4f05302bbbc32040e03b03494a0c748bc1d93 (patch)
treea08ca70a9e7e0cd9785afca378b8f1ec55237115 /app-text/t1utils
parentmask galeon until mozilla 0.9.9 is fixed (diff)
downloadgentoo-2-c4b4f05302bbbc32040e03b03494a0c748bc1d93.tar.gz
gentoo-2-c4b4f05302bbbc32040e03b03494a0c748bc1d93.tar.bz2
gentoo-2-c4b4f05302bbbc32040e03b03494a0c748bc1d93.zip
New version of package available.
Diffstat (limited to 'app-text/t1utils')
-rw-r--r--app-text/t1utils/ChangeLog11
-rw-r--r--app-text/t1utils/files/digest-t1utils-1.251
-rw-r--r--app-text/t1utils/t1utils-1.25.ebuild26
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
+
+}
+