diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-11-28 18:57:57 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-11-28 18:59:39 -0500 |
commit | 0d2ce1ced242c7c6c73b41172a95c6289d0f4abe (patch) | |
tree | 6120de81fd5205b3851bdcf2fd5cfaebcee8ec89 /x11-misc/xbattbar/xbattbar-1.4.9.ebuild | |
parent | net-analyzer/synscan: EAPI7->8, fix w/ lld (diff) | |
download | gentoo-0d2ce1ced242c7c6c73b41172a95c6289d0f4abe.tar.gz gentoo-0d2ce1ced242c7c6c73b41172a95c6289d0f4abe.tar.bz2 gentoo-0d2ce1ced242c7c6c73b41172a95c6289d0f4abe.zip |
x11-misc/xbattbar: EAPI7->8, fix w/ upcoming clang16
Closes: https://bugs.gentoo.org/875059
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-misc/xbattbar/xbattbar-1.4.9.ebuild')
-rw-r--r-- | x11-misc/xbattbar/xbattbar-1.4.9.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/x11-misc/xbattbar/xbattbar-1.4.9.ebuild b/x11-misc/xbattbar/xbattbar-1.4.9.ebuild index 660160d40073..ff02fcb15ecb 100644 --- a/x11-misc/xbattbar/xbattbar-1.4.9.ebuild +++ b/x11-misc/xbattbar/xbattbar-1.4.9.ebuild @@ -1,7 +1,7 @@ -# 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 flag-o-matic toolchain-funcs @@ -9,7 +9,7 @@ DESCRIPTION="Advanced Power Management battery status display for X" HOMEPAGE="https://packages.qa.debian.org/x/xbattbar.html" SRC_URI="mirror://debian/pool/main/x/${PN}/${PN}_${PV}.orig.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ppc x86" @@ -24,14 +24,13 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${PN}-1.4.5-Makefile.patch "${FILESDIR}"/${PN}-1.4.8-const.patch + "${FILESDIR}"/${PN}-1.4.9-implicit-int.patch ) src_prepare() { default - sed -i \ - -e "s:usr/lib:usr/$(get_libdir):" \ - xbattbar.c || die + sed -i "s|/usr/lib|${EPREFIX}/usr/$(get_libdir)|" xbattbar.c || die } src_configure() { @@ -40,6 +39,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" LIBDIR="$(get_libdir)" install - dodoc README + emake DESTDIR="${ED}" LIBDIR="$(get_libdir)" install + einstalldocs } |