diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-08 13:24:41 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-08 13:24:41 +0000 |
commit | 921037a7a1e725691c782940aa5d20174b289086 (patch) | |
tree | fc676487909c3d05510e1b76979ff5241a0343da /media-libs/t1lib | |
parent | *** empty log message *** (diff) | |
download | historical-921037a7a1e725691c782940aa5d20174b289086.tar.gz historical-921037a7a1e725691c782940aa5d20174b289086.tar.bz2 historical-921037a7a1e725691c782940aa5d20174b289086.zip |
*** empty log message ***
Diffstat (limited to 'media-libs/t1lib')
-rw-r--r-- | media-libs/t1lib/files/digest | 1 | ||||
-rw-r--r-- | media-libs/t1lib/t1lib-1.0.1-r1.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/media-libs/t1lib/files/digest b/media-libs/t1lib/files/digest new file mode 100644 index 000000000000..79527f388468 --- /dev/null +++ b/media-libs/t1lib/files/digest @@ -0,0 +1 @@ +MD5 5e09289172db215810e8c8d2e8867de3 t1lib-1.0.1.tar.gz diff --git a/media-libs/t1lib/t1lib-1.0.1-r1.ebuild b/media-libs/t1lib/t1lib-1.0.1-r1.ebuild new file mode 100644 index 000000000000..71f426219ad3 --- /dev/null +++ b/media-libs/t1lib/t1lib-1.0.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-libs/t1lib/t1lib-1.0.1-r1.ebuild,v 1.1 2000/08/08 13:24:41 achim Exp $ + +P=t1lib-1.0.1 +A=${P}.tar.gz +S=${WORKDIR}/T1-1.0.1 +CATEGORY="media-libs" +DESCRIPTION="A Type 1 Rasterizer Library for UNIX/X11" +SRC_URI="ftp://ftp.neuroinformatik.ruhr-uni-bochum.de/pub/software/t1lib/"${A} +HOMEPAGE="http://www.neuroinformatik.ruhr-uni-bochum.de/ini/PEOPLE/rmz/t1lib/t1lib.html" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S} + ./configure --host=${CHOST} --prefix=/usr + make without_doc +} + +src_install() { + cd ${S} + make prefix=${D}/usr install + dodoc Changes LGPL LICENSE README* +} + + + |