mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
33 lines
681 B
Bash
33 lines
681 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
MY_P="${P//./_}"
|
|
|
|
DESCRIPTION="Analyze and adjust MP3 files to same volume"
|
|
HOMEPAGE="https://mp3gain.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${MY_P}-src.zip"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
|
|
BDEPEND="app-arch/unzip"
|
|
RDEPEND="media-sound/mpg123"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-1.6.2-CVE-2019-18359-plus.patch"
|
|
)
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
dobin mp3gain
|
|
}
|