Files
guru/x11-misc/i3lock-fancy-rapid/i3lock-fancy-rapid-0.0.0_pre20201109-r1.ebuild
Jian Lin a589a3bd93 x11-misc/i3lock-fancy-rapid: respect LDFLAGS
Closes: https://bugs.gentoo.org/781818
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Jian Lin <jlin.gentoo@outlook.com>
2021-04-21 07:35:11 +08:00

44 lines
896 B
Bash

# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic toolchain-funcs
MY_REV="c70ecfa8a529cb71f21f475f31d748ce9b154a8b"
DESCRIPTION="A faster implementation of i3lock-fancy"
HOMEPAGE="https://github.com/yvbbrjdr/i3lock-fancy-rapid"
SRC_URI="https://github.com/yvbbrjdr/i3lock-fancy-rapid/archive/${MY_REV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_REV}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RDEPEND="
|| (
>=x11-misc/i3lock-2.12
>=x11-misc/i3lock-color-2.12
)
"
DEPEND="x11-libs/libX11"
src_prepare() {
default
sed -e "s/gcc/$(tc-getCC)/" \
-e "/CFLAGS=/d" \
-e 's/$(CC) $^ $(CFLAGS) -o $@/$(CC) $^ $(CFLAGS) $(LDFLAGS) -o $@/' \
-i Makefile || die
}
src_configure() {
default
append-cflags -fopenmp -lX11
}
src_install() {
dobin i3lock-fancy-rapid
einstalldocs
}