new ebuild app-cdr/dvdisaster
This commit is contained in:
1
app-cdr/dvdisaster/Manifest
Normal file
1
app-cdr/dvdisaster/Manifest
Normal file
@@ -0,0 +1 @@
|
|||||||
|
DIST v0.79.10-pl5.tar.gz 10363266 BLAKE2B a2c42073790bdf1394617d1c335a6e4ec00e4a825f10225fecf925b6a73ab2d3a573468bb1f8a644ef943dc0faddfebd145f8fd0821ca3947bf513c57d05ef71 SHA512 448565d43840f1f526d84a8c98bc80b0450647c236cbdaad360d128a26af21ec7b399d6842919a2bfc052788dc46bf72395246ed3a670504ef1f5a87817fe04e
|
||||||
59
app-cdr/dvdisaster/dvdisaster-0.79.10-r5.ebuild
Normal file
59
app-cdr/dvdisaster/dvdisaster-0.79.10-r5.ebuild
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
# Copyright 1999-2026 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
inherit desktop toolchain-funcs xdg
|
||||||
|
|
||||||
|
DESCRIPTION="Tool for creating error correction data (ecc) for optical media (DVD, CD, BD)"
|
||||||
|
HOMEPAGE="https://dvdisaster.jcea.es/"
|
||||||
|
SRC_URI="https://github.com/speed47/dvdisaster/archive/refs/tags/v${PV}-pl5.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="GPL-3+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~x86 ~amd64"
|
||||||
|
IUSE="debug nls"
|
||||||
|
S="${WORKDIR}/${P}-pl5"
|
||||||
|
|
||||||
|
dvdi_langs="cs de it pt-BR ru sv"
|
||||||
|
for dvdi_lang in ${dvdi_langs}; do
|
||||||
|
IUSE+=" l10n_${dvdi_lang}"
|
||||||
|
done
|
||||||
|
unset dvdi_lang
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
dev-libs/glib:2
|
||||||
|
x11-libs/gdk-pixbuf
|
||||||
|
x11-libs/gtk+:2
|
||||||
|
nls? ( virtual/libintl )"
|
||||||
|
DEPEND="${RDEPEND}"
|
||||||
|
BDEPEND="
|
||||||
|
nls? ( sys-devel/gettext )
|
||||||
|
virtual/os-headers
|
||||||
|
virtual/pkgconfig"
|
||||||
|
|
||||||
|
DOCS=( CHANGELOG CREDITS.en README )
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
default
|
||||||
|
|
||||||
|
newicon contrib/${PN}48.png ${PN}.png
|
||||||
|
make_desktop_entry ${PN} ${PN} ${PN} 'System;Utility'
|
||||||
|
|
||||||
|
local res
|
||||||
|
for res in 16 32 48 64; do
|
||||||
|
newicon -s ${res} contrib/${PN}${res}.png ${PN}.png
|
||||||
|
done
|
||||||
|
|
||||||
|
local dest="${ED}"/usr/share
|
||||||
|
|
||||||
|
local dvdi_lang
|
||||||
|
for dvdi_lang in ${dvdi_langs}; do
|
||||||
|
use l10n_${dvdi_lang} || rm -rf \
|
||||||
|
${dest}/doc/${PF}/${dvdi_lang/-/_} \
|
||||||
|
${dest}/doc/${PF}/CREDITS.${dvdi_lang/-/_} \
|
||||||
|
${dest}/man/${dvdi_lang/-/_} || die
|
||||||
|
done
|
||||||
|
|
||||||
|
rm "${ED}"/usr/bin/*-uninstall.sh || die
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user