mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03: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>
39 lines
849 B
Bash
39 lines
849 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop xdg
|
|
|
|
DESCRIPTION="Lightweight cdrtools front-end for CD and DVD writing"
|
|
HOMEPAGE="http://www.xcdroast.org/"
|
|
SRC_URI="https://downloads.sourceforge.net/xcdroast/${P/_/}.tar.gz"
|
|
S="${WORKDIR}"/${P/_/}
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~sparc x86"
|
|
IUSE="nls suid"
|
|
|
|
RDEPEND=">=app-cdr/cdrtools-3.02_alpha09
|
|
media-libs/alsa-lib
|
|
>=x11-libs/gtk+-2:2"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable nls) \
|
|
$(use_enable suid user-host-mode)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
dodoc -r AUTHORS ChangeLog README doc/*
|
|
|
|
newicon -s 48 xpms/ico_cdwriter.xpm xcdroast.xpm
|
|
make_desktop_entry xcdroast "X-CD-Roast" xcdroast "AudioVideo;DiscBurning"
|
|
}
|