From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id CE9CE1582EF for ; Mon, 10 Feb 2025 09:22:50 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id B9A093430F3 for ; Mon, 10 Feb 2025 09:22:50 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 0C7E6110472; Mon, 10 Feb 2025 09:22:45 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id EF9D5110471 for ; Mon, 10 Feb 2025 09:22:44 +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 89DA03430E9 for ; Mon, 10 Feb 2025 09:22:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED43DE65 for ; Mon, 10 Feb 2025 09:22: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: <1739179150.20321133e4eecf54a935b91ab5ede61bf5b4e5e8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/ccd2iso/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/ccd2iso/ccd2iso-0.3-r2.ebuild X-VCS-Directories: app-cdr/ccd2iso/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 20321133e4eecf54a935b91ab5ede61bf5b4e5e8 X-VCS-Branch: master Date: Mon, 10 Feb 2025 09:22: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: ffc09934-153b-47db-be90-57c68f66a857 X-Archives-Hash: 902fd1f0551ee2db0e27fb8ca3ac360c commit: 20321133e4eecf54a935b91ab5ede61bf5b4e5e8 Author: NHOrus yahoo com> AuthorDate: Sat Jan 4 23:12:49 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 10 09:19:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20321133 app-cdr/ccd2iso: implicit-in-configure Fixed by autoreconf Bug: https://bugs.gentoo.org/900126 Signed-off-by: NHOrus yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/39980 Signed-off-by: Sam James gentoo.org> app-cdr/ccd2iso/ccd2iso-0.3-r2.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-cdr/ccd2iso/ccd2iso-0.3-r2.ebuild b/app-cdr/ccd2iso/ccd2iso-0.3-r2.ebuild new file mode 100644 index 000000000000..094ca6621dcb --- /dev/null +++ b/app-cdr/ccd2iso/ccd2iso-0.3-r2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Convert CD images from ccd (CloneCD) to iso" +HOMEPAGE="https://sourceforge.net/projects/ccd2iso/" +SRC_URI="https://downloads.sourceforge.net/ccd2iso/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +PATCHES=( "${FILESDIR}"/${P}-headers.patch ) + +src_prepare() { + default + #C99 https://bugs.gentoo.org/900126 + eautoreconf +}