From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B714659CA5 for ; Sun, 20 Mar 2016 19:12:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B80FAE083B; Sun, 20 Mar 2016 19:12:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45766E083B for ; Sun, 20 Mar 2016 19:12:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97687340A7D for ; Sun, 20 Mar 2016 19:12:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB031822 for ; Sun, 20 Mar 2016 19:12:34 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1458501141.b01911d1fac746b342b378575b598b171884fc58.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vips/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vips/vips-7.26.7-r1.ebuild X-VCS-Directories: media-libs/vips/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: b01911d1fac746b342b378575b598b171884fc58 X-VCS-Branch: master Date: Sun, 20 Mar 2016 19:12:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0c83094f-2680-413e-8cc5-42b3ee43731b X-Archives-Hash: 008f38740f85f45af4b1962b88e93088 commit: b01911d1fac746b342b378575b598b171884fc58 Author: Fabian Groffen gentoo org> AuthorDate: Sun Mar 20 19:11:31 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Mar 20 19:12:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b01911d1 media-libs/vips: update dependencies as per changelog, bug #416815 Package-Manager: portage-2.2.27-prefix media-libs/vips/vips-7.26.7-r1.ebuild | 74 +++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/media-libs/vips/vips-7.26.7-r1.ebuild b/media-libs/vips/vips-7.26.7-r1.ebuild new file mode 100644 index 0000000..b65eb61 --- /dev/null +++ b/media-libs/vips/vips-7.26.7-r1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=3 +PYTHON_DEPEND="python? 2" +inherit eutils versionator python + +# TODO: +# matio? ( sci-libs/matio ) - in science overlay #269598 (wait for new release +# after 1.3.4) or until somebody adds it to the tree. + +DESCRIPTION="VIPS Image Processing Library" +SRC_URI="http://www.vips.ecs.soton.ac.uk/supported/$(get_version_component_range 1-2)/${P}.tar.gz" +HOMEPAGE="http://vips.sourceforge.net" + +LICENSE="LGPL-2.1" +SLOT="1" +KEYWORDS="~amd64 ~x86" +IUSE="debug exif fits fftw imagemagick jpeg lcms openexr png python static-libs tiff" + +RDEPEND=">=dev-lang/orc-0.4.11 + >=dev-libs/glib-2.6:2 + dev-libs/libxml2 + sys-libs/zlib + >=x11-libs/pango-1.8 + fftw? ( sci-libs/fftw:3.0 ) + imagemagick? ( || ( >=media-gfx/imagemagick-5.0.0 + media-gfx/graphicsmagick[imagemagick] ) ) + lcms? ( media-libs/lcms ) + openexr? ( >=media-libs/openexr-1.2.2 ) + exif? ( >=media-libs/libexif-0.6 ) + tiff? ( media-libs/tiff ) + jpeg? ( virtual/jpeg ) + fits? ( sci-libs/cfitsio ) + png? ( >=media-libs/libpng-1.2.9 )" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am" + +pkg_setup() { + if use python; then + python_set_active_version 2 + python_pkg_setup + fi +} + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_with fftw fftw3) \ + $(use_with lcms) \ + $(use_with openexr OpenEXR) \ + $(use_with exif libexif) \ + $(use_with imagemagick magick) \ + $(use_with png) \ + $(use_with tiff) \ + $(use_with fits cfitsio) \ + $(use_with jpeg) \ + $(use_with orc) \ + $(use_with python) \ + $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die + + # 314101 + mv "${ED}"/usr/share/doc/${PN}/* "${ED}"/usr/share/doc/${PF} || die + rmdir "${ED}"/usr/share/doc/${PN}/ || die + dosym /usr/share/doc/${PF} /usr/share/doc/${PN} + + find "${ED}" -name '*.la' -exec rm -f {} + +}