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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 55C30158094 for ; Sat, 8 Oct 2022 19:15:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5ABE1E0839; Sat, 8 Oct 2022 19:15:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 438E7E0839 for ; Sat, 8 Oct 2022 19:15:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B8E333EDD8 for ; Sat, 8 Oct 2022 19:15:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C604D5DD for ; Sat, 8 Oct 2022 19:15:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665256534.14b52102300f73587c5c25925a5efc468667ff5f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpano13/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpano13/libpano13-2.9.20.ebuild X-VCS-Directories: media-libs/libpano13/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 14b52102300f73587c5c25925a5efc468667ff5f X-VCS-Branch: master Date: Sat, 8 Oct 2022 19:15:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 53980c32-9100-401e-9688-a2d0f4867513 X-Archives-Hash: 0f149941af365cd3ceb91a318bacd16f commit: 14b52102300f73587c5c25925a5efc468667ff5f Author: Sam James gentoo org> AuthorDate: Sat Oct 8 19:14:40 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 8 19:15:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14b52102 media-libs/libpano13: drop 2.9.20 Signed-off-by: Sam James gentoo.org> media-libs/libpano13/libpano13-2.9.20.ebuild | 39 ---------------------------- 1 file changed, 39 deletions(-) diff --git a/media-libs/libpano13/libpano13-2.9.20.ebuild b/media-libs/libpano13/libpano13-2.9.20.ebuild deleted file mode 100644 index 8312b798bdb8..000000000000 --- a/media-libs/libpano13/libpano13-2.9.20.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit java-pkg-opt-2 - -DESCRIPTION="Helmut Dersch's panorama toolbox library" -HOMEPAGE="http://panotools.sourceforge.net/" -SRC_URI="mirror://sourceforge/panotools/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/3" -KEYWORDS="amd64 arm64 x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="java static-libs" - -DEPEND="media-libs/libpng:0= - media-libs/tiff:0 - sys-libs/zlib - virtual/jpeg:0 - java? ( >=virtual/jdk-1.3 )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}-$(ver_cut 1-3)" - -src_configure() { - LIBS="-lm" econf \ - $(use_with java java ${JAVA_HOME}) \ - $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install - dodoc README README.linux AUTHORS NEWS doc/*.txt - - if ! use static-libs ; then - find "${D}" -name '*.la' -delete || die - fi -}