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 32882158094 for ; Thu, 28 Jul 2022 08:28:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65084E0D4E; Thu, 28 Jul 2022 08:28:28 +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 3CC01E0D4E for ; Thu, 28 Jul 2022 08:28:28 +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 4CC6B3410FF for ; Thu, 28 Jul 2022 08:28:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5FD5555 for ; Thu, 28 Jul 2022 08:28:25 +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: <1658996897.819f4cce5c6650de452675e9702bedcf417de113.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/cdrdao/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/cdrdao/cdrdao-1.2.4.ebuild X-VCS-Directories: app-cdr/cdrdao/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 819f4cce5c6650de452675e9702bedcf417de113 X-VCS-Branch: master Date: Thu, 28 Jul 2022 08:28:25 +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: 7b88bd49-43e7-4ef9-8e41-2eabae4cb7bb X-Archives-Hash: 200a3fd187f16caea2d38694bf7d9a9a commit: 819f4cce5c6650de452675e9702bedcf417de113 Author: Sam James gentoo org> AuthorDate: Thu Jul 28 08:17:07 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 28 08:28:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=819f4cce app-cdr/cdrdao: drop 1.2.4 Signed-off-by: Sam James gentoo.org> app-cdr/cdrdao/cdrdao-1.2.4.ebuild | 63 -------------------------------------- 1 file changed, 63 deletions(-) diff --git a/app-cdr/cdrdao/cdrdao-1.2.4.ebuild b/app-cdr/cdrdao/cdrdao-1.2.4.ebuild deleted file mode 100644 index f2a3bb1783d6..000000000000 --- a/app-cdr/cdrdao/cdrdao-1.2.4.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools flag-o-matic - -DESCRIPTION="Burn CDs in disk-at-once mode -- with optional GUI frontend" -HOMEPAGE="http://cdrdao.sourceforge.net/" -if [[ ${PV/*_rc*} ]] -then - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -else - SRC_URI="http://www.poolshark.org/src/${P/_}.tar.bz2" -fi - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="encode mad vorbis" - -COMMON_DEPEND=" - app-cdr/cdrtools - encode? ( >=media-sound/lame-3.99 ) - mad? ( - media-libs/libmad - media-libs/libao - ) - vorbis? ( - media-libs/libvorbis - media-libs/libao - )" -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig" -RDEPEND="${COMMON_DEPEND} - !app-cdr/cue2toc - !dev-util/pccts" - -PATCHES=( - "${FILESDIR}/${P}-ax_pthread.patch" - "${FILESDIR}/${P}-wformat-security.patch" -) - -S="${WORKDIR}/${P/_}" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # Fix building with latest libsigc++ - append-cxxflags -std=c++11 - find -name '*.h' -exec sed -i '/sigc++\/object.h/d' {} + || die - - local myeconfargs=( - --without-gcdmaster - $(use_with vorbis ogg-support) - $(use_with mad mp3-support) - $(use_with encode lame) - ) - econf "${myeconfargs[@]}" -}