diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-03-21 11:54:23 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-03-21 11:54:23 +0000 |
commit | 1bbe457205087ed4301d7064bcc0e399dee8c35d (patch) | |
tree | 858eb08df0b967805921e22eb19540e74ce83cb3 /media-libs/tiff | |
parent | No more gzipped HTML documentation (diff) | |
download | gentoo-2-1bbe457205087ed4301d7064bcc0e399dee8c35d.tar.gz gentoo-2-1bbe457205087ed4301d7064bcc0e399dee8c35d.tar.bz2 gentoo-2-1bbe457205087ed4301d7064bcc0e399dee8c35d.zip |
No more gzipped html documentation
Diffstat (limited to 'media-libs/tiff')
-rw-r--r-- | media-libs/tiff/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/tiff/files/digest-tiff-3.5.7-r1 | 1 | ||||
-rw-r--r-- | media-libs/tiff/tiff-3.5.7-r1.ebuild | 34 |
3 files changed, 43 insertions, 1 deletions
diff --git a/media-libs/tiff/ChangeLog b/media-libs/tiff/ChangeLog index 9783bd883281..3fac1b686ac0 100644 --- a/media-libs/tiff/ChangeLog +++ b/media-libs/tiff/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-libs/tiff # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.1 2002/02/01 21:53:31 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.2 2002/03/21 11:54:23 seemant Exp $ + +*tiff-3.5.7-r1 (21 Mar 2002) + + 21 Mar 2002; Seemant Kulleen <seemant@gentoo.org> tiff-3.5.7-r1.ebuild : + + HTML documentation was getting gzipped. This is no longer the case, thanks + to stefan@mdy.univie.ac.at who pointed it out. *tiff-3.5.7 (1 Feb 2002) diff --git a/media-libs/tiff/files/digest-tiff-3.5.7-r1 b/media-libs/tiff/files/digest-tiff-3.5.7-r1 new file mode 100644 index 000000000000..83cf7f85cd29 --- /dev/null +++ b/media-libs/tiff/files/digest-tiff-3.5.7-r1 @@ -0,0 +1 @@ +MD5 82243b5ae9b7c9e492aeebc501680990 tiff-v3.5.7.tar.gz 951139 diff --git a/media-libs/tiff/tiff-3.5.7-r1.ebuild b/media-libs/tiff/tiff-3.5.7-r1.ebuild new file mode 100644 index 000000000000..3ac8bfca6ec2 --- /dev/null +++ b/media-libs/tiff/tiff-3.5.7-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 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/tiff/tiff-3.5.7-r1.ebuild,v 1.1 2002/03/21 11:54:23 seemant Exp $ + +MY_P=${P/tiff-/tiff-v} +S=${WORKDIR}/${MY_P} +DESCRIPTION="libtiff" +SRC_URI="ftp://ftp.remotesensing.org/pub/libtiff/${MY_P}.tar.gz" +HOMEPAGE="http://www.libtiff.org/" + +DEPEND=">=media-libs/jpeg-6b + >=sys-libs/zlib-1.1.3-r2" + + +src_unpack() { + unpack ${A} + cd ${S} + cp ${FILESDIR}/config.site config.site + echo "DIR_HTML="${D}/usr/share/doc/${PF}/html"" >> config.site +} + +src_compile() { + OPTIMIZER="${CFLAGS}" ./configure --noninteractive || die + emake || die +} + +src_install() { + dodir /usr/{bin,lib,share/man,share/doc/${PF}/html} + dodir /usr/share/doc/${PF}/html + make INSTALL="/bin/sh ${S}/port/install.sh" install || die + preplib /usr + dodoc COPYRIGHT README TODO VERSION +} |