From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CDBB01382C5 for ; Mon, 5 Mar 2018 22:14:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0B77E0932; Mon, 5 Mar 2018 22:14:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF5E1E0932 for ; Mon, 5 Mar 2018 22:14:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5BA3B335C2C for ; Mon, 5 Mar 2018 22:14:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D72C1EF for ; Mon, 5 Mar 2018 22:14:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1520288019.ca7a3ad21e59987f1673fb098b0a8ef654ff7a78.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/simage/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/simage/simage-1.7.0.ebuild X-VCS-Directories: media-libs/simage/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ca7a3ad21e59987f1673fb098b0a8ef654ff7a78 X-VCS-Branch: master Date: Mon, 5 Mar 2018 22:14:15 +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: 687bd356-395a-4a0f-8a2b-d8e5a5555771 X-Archives-Hash: 60a6a24facc6798fbd1ec8b3fefe4461 commit: ca7a3ad21e59987f1673fb098b0a8ef654ff7a78 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Mar 5 19:42:20 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Mar 5 22:13:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca7a3ad2 media-libs/simage: Drop old EAPI2-- Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/simage/simage-1.7.0.ebuild | 76 ----------------------------------- 1 file changed, 76 deletions(-) diff --git a/media-libs/simage/simage-1.7.0.ebuild b/media-libs/simage/simage-1.7.0.ebuild deleted file mode 100644 index 52c69c5549a..00000000000 --- a/media-libs/simage/simage-1.7.0.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 - -inherit base - -DESCRIPTION="Image and video texturing library" -HOMEPAGE="https://bitbucket.org/Coin3D/simage" -SRC_URI="https://bitbucket.org/Coin3D/coin/downloads/${P}.tar.gz" - -LICENSE="public-domain mpeg2enc" -KEYWORDS="amd64 ~arm ppc x86" -SLOT="0" -IUSE="debug gif jpeg jpeg2k png sndfile static-libs tiff vorbis zlib" -RESTRICT="mirror bindist" #465086 - -RDEPEND=" - gif? ( media-libs/giflib ) - jpeg? ( virtual/jpeg ) - jpeg2k? ( media-libs/jasper ) - png? ( media-libs/libpng:0 ) - sndfile? ( media-libs/libsndfile ) - tiff? ( media-libs/tiff:0 ) - vorbis? ( - media-libs/libogg - media-libs/libvorbis - ) - zlib? ( sys-libs/zlib ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -DOCS=(AUTHORS ChangeLog NEWS README) - -PATCHES=( - "${FILESDIR}"/${PN}-1.7.0-pkgconfig-partial.patch - "${FILESDIR}"/${PN}-1.7.0-libpng15.patch -) - -# --with-pic, two defined (PIC and one for image format, sillyt), no not pass -# --enable-qimage, broken Qt checks, unable to locate FHS-compliant Qt install -# --with-x, not used anywhere -src_configure() { - econf \ - --disable-qimage \ - --disable-quicktime \ - --with-eps \ - --with-mpeg2enc \ - --with-rgb \ - --with-targa \ - --with-xwd \ - --without-x \ - $(use_with gif) \ - $(use_enable debug) \ - $(use_enable debug symbols) \ - $(use_with jpeg) \ - $(use_with jpeg2k jasper) \ - $(use_with png) \ - $(use_with sndfile libsndfile) \ - $(use_enable static-libs static) \ - $(use_with tiff) \ - $(use_with vorbis oggvorbis) \ - $(use_with zlib) -} - -src_install() { - # Remove simage from Libs.private - sed -e '/Libs.private/s/ -lsimage//' -i simage.pc || die - - base_src_install - - # Remove libtool files when not needed. - use static-libs || rm -f "${D}"/usr/lib*/*.la -}