diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-30 12:10:06 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-30 12:10:06 +0000 |
commit | 2991a2b4d6f86bbdc30ed7f7f5e926579db6cf8e (patch) | |
tree | 98ef6148d1586e884b41fc5734dd243e033e340a /media-libs/tiff | |
parent | dev-java/tomcat-servlet-api: removed old version (diff) | |
download | gentoo-2-2991a2b4d6f86bbdc30ed7f7f5e926579db6cf8e.tar.gz gentoo-2-2991a2b4d6f86bbdc30ed7f7f5e926579db6cf8e.tar.bz2 gentoo-2-2991a2b4d6f86bbdc30ed7f7f5e926579db6cf8e.zip |
Version bump wrt #396465 by Stefan Talpalaru
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/tiff')
-rw-r--r-- | media-libs/tiff/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/tiff/tiff-4.0.0.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/media-libs/tiff/ChangeLog b/media-libs/tiff/ChangeLog index 19d172638151..4e48cd5b1cdf 100644 --- a/media-libs/tiff/ChangeLog +++ b/media-libs/tiff/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/tiff # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.176 2011/10/10 20:40:39 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.177 2011/12/30 12:10:06 ssuominen Exp $ + +*tiff-4.0.0 (30 Dec 2011) + + 30 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> +tiff-4.0.0.ebuild: + Version bump wrt #396465 by Stefan Talpalaru *tiff-3.9.5-r1 (10 Oct 2011) diff --git a/media-libs/tiff/tiff-4.0.0.ebuild b/media-libs/tiff/tiff-4.0.0.ebuild new file mode 100644 index 000000000000..a6eb12d828df --- /dev/null +++ b/media-libs/tiff/tiff-4.0.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.0.ebuild,v 1.1 2011/12/30 12:10:06 ssuominen Exp $ + +EAPI=4 +inherit libtool + +DESCRIPTION="Library for manipulation of TIFF (Tag Image File Format) images" +HOMEPAGE="http://www.remotesensing.org/libtiff/" +SRC_URI="http://download.osgeo.org/libtiff/${P}.tar.gz + ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="+cxx jbig jpeg lzma static-libs zlib" + +RDEPEND="jpeg? ( virtual/jpeg ) + jbig? ( media-libs/jbigkit ) + lzma? ( app-arch/xz-utils ) + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND}" + +src_prepare() { + elibtoolize +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable zlib) \ + $(use_enable jpeg) \ + $(use_enable jbig) \ + $(use_enable lzma) \ + $(use_enable cxx) \ + --without-x \ + --with-docdir="${EPREFIX}"/usr/share/doc/${PF} +} + +src_install() { + default + + rm -f \ + "${ED}"/usr/lib*/libtiff*.la \ + "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION} +} |