2020-12-29 09:51:04 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2016-02-29 08:50:34 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-12-29 09:51:04 +03:00
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit desktop toolchain-funcs xdg
|
2016-02-29 08:50:34 +03:00
|
|
|
|
|
|
|
DESCRIPTION="Tool for creating error correction data (ecc) for optical media (DVD, CD, BD)"
|
|
|
|
HOMEPAGE="http://dvdisaster.net/"
|
2020-12-29 09:51:04 +03:00
|
|
|
SRC_URI="http://dvdisaster.net/downloads/${P}.tar.bz2"
|
2016-02-29 08:50:34 +03:00
|
|
|
|
|
|
|
LICENSE="GPL-3+"
|
|
|
|
SLOT="0"
|
2018-10-20 22:32:29 +03:00
|
|
|
KEYWORDS="amd64 ppc x86"
|
2016-02-29 08:50:34 +03:00
|
|
|
IUSE="debug nls"
|
|
|
|
|
2016-07-03 23:58:23 +03:00
|
|
|
dvdi_langs="cs de it pt-BR ru sv"
|
2016-02-29 08:50:34 +03:00
|
|
|
for dvdi_lang in ${dvdi_langs}; do
|
2016-07-03 23:58:23 +03:00
|
|
|
IUSE+=" l10n_${dvdi_lang}"
|
2016-02-29 08:50:34 +03:00
|
|
|
done
|
|
|
|
unset dvdi_lang
|
|
|
|
|
2018-09-30 19:52:33 +03:00
|
|
|
RDEPEND="
|
2020-12-29 09:51:04 +03:00
|
|
|
dev-libs/glib:2
|
2018-09-30 19:52:33 +03:00
|
|
|
x11-libs/gdk-pixbuf
|
2020-12-29 09:51:04 +03:00
|
|
|
x11-libs/gtk+:2
|
|
|
|
nls? ( virtual/libintl )"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
BDEPEND="
|
2016-02-29 08:50:34 +03:00
|
|
|
nls? ( sys-devel/gettext )
|
|
|
|
virtual/os-headers
|
2020-12-29 09:51:04 +03:00
|
|
|
virtual/pkgconfig"
|
|
|
|
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
|
|
|
|
|
|
|
|
DOCS=( CHANGELOG CREDITS.en README README.MODIFYING TODO TRANSLATION.HOWTO )
|
2016-02-29 08:50:34 +03:00
|
|
|
|
2020-12-30 18:44:01 +03:00
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
sed -i -e "s@CC=gcc@CC=$(tc-getCC)@" scripts/bash-based-configure || die
|
|
|
|
}
|
|
|
|
|
2016-02-29 08:50:34 +03:00
|
|
|
src_configure() {
|
|
|
|
./configure \
|
2020-12-29 09:51:04 +03:00
|
|
|
--prefix="${EPREFIX}"/usr \
|
|
|
|
--bindir="${EPREFIX}"/usr/bin \
|
|
|
|
--mandir="${EPREFIX}"/usr/share/man \
|
|
|
|
--docdir="${EPREFIX}"/usr/share/doc \
|
2016-02-29 08:50:34 +03:00
|
|
|
--docsubdir=${PF} \
|
2020-12-29 09:51:04 +03:00
|
|
|
--localedir="${EPREFIX}"/usr/share/locale \
|
2016-02-29 08:50:34 +03:00
|
|
|
--buildroot="${D}" \
|
2020-12-29 09:51:04 +03:00
|
|
|
--with-memdebug=$(usex debug) \
|
|
|
|
--with-nls=$(usex nls) || die
|
2016-02-29 08:50:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake $(use nls && echo -j1) CC="$(tc-getCC)"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2020-12-29 09:51:04 +03:00
|
|
|
default
|
2016-02-29 08:50:34 +03:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-12-29 09:51:04 +03:00
|
|
|
local dest="${ED}"/usr/share
|
2016-02-29 08:50:34 +03:00
|
|
|
|
|
|
|
local dvdi_lang
|
|
|
|
for dvdi_lang in ${dvdi_langs}; do
|
2016-07-03 23:58:23 +03:00
|
|
|
use l10n_${dvdi_lang} || rm -rf \
|
|
|
|
${dest}/doc/${PF}/${dvdi_lang/-/_} \
|
|
|
|
${dest}/doc/${PF}/CREDITS.${dvdi_lang/-/_} \
|
2018-09-30 19:52:33 +03:00
|
|
|
${dest}/man/${dvdi_lang/-/_} || die
|
2016-02-29 08:50:34 +03:00
|
|
|
done
|
|
|
|
|
2020-12-29 09:51:04 +03:00
|
|
|
rm ${ED}/usr/bin/*-uninstall.sh || die
|
2016-02-29 08:50:34 +03:00
|
|
|
}
|