From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1611702-garchives=archives.gentoo.org@lists.gentoo.org> 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 B4C99158041 for <garchives@archives.gentoo.org>; Sat, 16 Mar 2024 12:13:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D6D2E2A26; Sat, 16 Mar 2024 12:13:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49DF1E2A25 for <gentoo-commits@lists.gentoo.org>; Sat, 16 Mar 2024 12:13:52 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29F1633BE32 for <gentoo-commits@lists.gentoo.org>; Sat, 16 Mar 2024 12:13:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E890E152E for <gentoo-commits@lists.gentoo.org>; Sat, 16 Mar 2024 12:13:47 +0000 (UTC) From: "Conrad Kostecki" <conikost@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" <conikost@gentoo.org> Message-ID: <1710591208.1be2c77cc426f3b0c436454a2ff0620e2e63c5aa.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libbsb/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libbsb/libbsb-0.0.7-r2.ebuild X-VCS-Directories: media-libs/libbsb/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 1be2c77cc426f3b0c436454a2ff0620e2e63c5aa X-VCS-Branch: master Date: Sat, 16 Mar 2024 12:13:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5aafc990-c423-432a-8ed2-525db0200a7e X-Archives-Hash: 20011c0451a44e09a977040c21ff70e5 commit: 1be2c77cc426f3b0c436454a2ff0620e2e63c5aa Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Tue Jan 16 19:41:01 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sat Mar 16 12:13:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1be2c77c media-libs/libbsb: EAPI8 bump, fix bug #724744 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://bugs.gentoo.org/724744 Closes: https://bugs.gentoo.org/899814 Closes: https://github.com/gentoo/gentoo/pull/34842 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> media-libs/libbsb/libbsb-0.0.7-r2.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/media-libs/libbsb/libbsb-0.0.7-r2.ebuild b/media-libs/libbsb/libbsb-0.0.7-r2.ebuild new file mode 100644 index 000000000000..be7212a192b1 --- /dev/null +++ b/media-libs/libbsb/libbsb-0.0.7-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools toolchain-funcs + +DESCRIPTION="Portable C library for reading and writing BSB format image files" +HOMEPAGE="https://libbsb.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="media-libs/libpng + media-libs/tiff:=" +RDEPEND="${DEPEND}" + +# "make check" in 0.0.7 fails with newer tiff versions (4.0.0) altough the +# tools work perfectly, so restrict test until this is fixed upstream +RESTRICT="test" + +src_prepare(){ + sed -i -e "s|ar crv|$(tc-getAR) crv|" Makefile.am || die + default + eautoreconf +}