mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
dev-python/pyrime: add python_test() app-shells/manpager: disable app-text/manpager dev-python/pyrime: add use flags app-misc/tmux-rime: support CFLAGS, CXXFLAGS, LDFLAGS app-misc/tmux-rime: don't call cc, ld directly Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
32 lines
526 B
Bash
32 lines
526 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="colorize man pages"
|
|
HOMEPAGE="https://github.com/Freed-Wu/manpager"
|
|
|
|
SRC_URI="
|
|
$HOMEPAGE/archive/${PV}.tar.gz -> $P.tar.gz
|
|
"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
RDEPEND="
|
|
!app-text/manpager
|
|
sys-apps/bat
|
|
app-text/ansifilter
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -i "s=/usr=$EPREFIX/usr=g" "bin/$PN"
|
|
}
|
|
|
|
src_install() {
|
|
dobin "bin/$PN"
|
|
echo "MANPAGER=manpager" | newenvd - 00manpager
|
|
}
|