mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
58 lines
1.2 KiB
Bash
58 lines
1.2 KiB
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools flag-o-matic
|
|
|
|
MY_PV="rel_${PV//./_}"
|
|
DESCRIPTION="Burn CDs in disk-at-once mode with a command line interface"
|
|
HOMEPAGE="https://github.com/cdrdao/cdrdao/"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${MY_PV}"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86"
|
|
IUSE="encode mad vorbis"
|
|
|
|
DEPEND="app-cdr/cdrtools
|
|
encode? ( >=media-sound/lame-3.99 )
|
|
mad? (
|
|
media-libs/libao
|
|
media-libs/libmad
|
|
)
|
|
vorbis? (
|
|
media-libs/libao
|
|
media-libs/libvorbis
|
|
)"
|
|
RDEPEND="${DEPEND}
|
|
!app-cdr/cue2toc"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-remove-gconf-dep.patch"
|
|
"${FILESDIR}/${PN}-1.2.5-fix-uninit.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# bug #943909
|
|
append-cflags -std=gnu17
|
|
append-cxxflags -std=c++11
|
|
|
|
filter-lto # https://bugs.gentoo.org/854219
|
|
|
|
local myeconfargs=(
|
|
--without-gcdmaster
|
|
$(use_with vorbis ogg-support)
|
|
$(use_with mad mp3-support)
|
|
$(use_with encode lame)
|
|
)
|
|
econf "${myeconfargs[@]}"
|
|
}
|