diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-10-05 18:38:09 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-10-05 19:00:17 -0400 |
commit | 5376d73e86c4a8d618d5068dbfbafb2f55f4069f (patch) | |
tree | 5da1f2cbbdb9535485257921eac725722a49a577 /net-misc/liveice | |
parent | app-text/binfind: fix configure with upcoming clang16 (diff) | |
download | gentoo-5376d73e86c4a8d618d5068dbfbafb2f55f4069f.tar.gz gentoo-5376d73e86c4a8d618d5068dbfbafb2f55f4069f.tar.bz2 gentoo-5376d73e86c4a8d618d5068dbfbafb2f55f4069f.zip |
net-misc/liveice: EAPI7->8, add missing ncurses dep
Also drop dead HOMEPAGE.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-misc/liveice')
-rw-r--r-- | net-misc/liveice/liveice-2000530-r3.ebuild (renamed from net-misc/liveice/liveice-2000530-r2.ebuild) | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/net-misc/liveice/liveice-2000530-r2.ebuild b/net-misc/liveice/liveice-2000530-r3.ebuild index cc73e827d6ac..822c02d34884 100644 --- a/net-misc/liveice/liveice-2000530-r2.ebuild +++ b/net-misc/liveice/liveice-2000530-r3.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools flag-o-matic toolchain-funcs DESCRIPTION="Live Source Client For IceCast" -HOMEPAGE="http://star.arm.ac.uk/~spm/software/liveice.html" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" SRC_URI="mirror://gentoo/${P}.tar.gz" +S="${WORKDIR}/${PN}" LICENSE="GPL-2+" SLOT="0" @@ -15,20 +16,24 @@ KEYWORDS="~amd64 x86" RDEPEND=" media-sound/lame - media-sound/mpg123" + media-sound/mpg123 + sys-libs/ncurses:=" DEPEND="${RDEPEND}" -S="${WORKDIR}/${PN}" -PATCHES=( "${FILESDIR}"/${P}-build.patch ) +PATCHES=( + "${FILESDIR}"/${P}-build.patch +) src_prepare() { default + eautoreconf - tc-export CC } src_configure() { + tc-export CC append-flags -fcommon + default } |