mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 00:45:46 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
58 lines
1.3 KiB
Bash
58 lines
1.3 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Realtime MPEG 1.0/2.0/2.5 audio player for layers 1, 2 and 3"
|
|
HOMEPAGE="https://mpg321.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${P/-/_}.orig.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
IUSE="alsa"
|
|
|
|
RDEPEND="app-eselect/eselect-mpg123
|
|
>=media-libs/libao-1:=
|
|
media-libs/libid3tag:=
|
|
media-libs/libmad
|
|
sys-libs/zlib
|
|
alsa? ( media-libs/alsa-lib )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S=${WORKDIR}/${P}-orig
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-0.2.12-check-for-lround.patch"
|
|
"${FILESDIR}/${P}-format-security.patch"
|
|
"${FILESDIR}/${P}-CVE-2019-14247.patch"
|
|
"${FILESDIR}/${P}-gcc10.patch"
|
|
"${FILESDIR}/${P}-clang16.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-mpg123-symlink \
|
|
--enable-ipv6 \
|
|
$(use_enable alsa)
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
dodoc AUTHORS BUGS HACKING README* THANKS TODO # NEWS and ChangeLog are dead
|
|
mv "${ED}"/usr/bin/mpg321{,-mpg123}
|
|
}
|
|
|
|
pkg_postinst() {
|
|
eselect mpg123 update ifunset
|
|
}
|
|
|
|
pkg_postrm() {
|
|
eselect mpg123 update ifunset
|
|
}
|