mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
74 lines
1.6 KiB
Bash
74 lines
1.6 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit shell-completion
|
|
|
|
DESCRIPTION="A fast, drop-in replacement for GNU grep"
|
|
HOMEPAGE="https://ugrep.com/"
|
|
SRC_URI="https://github.com/Genivia/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
CPU_USE="cpu_flags_arm_neon cpu_flags_x86_avx2 cpu_flags_x86_sse2"
|
|
IUSE="7zip brotli boost bzip2 bzip3 +lzma lz4 +mmap +pcre2 +zlib zstd ${CPU_USE}"
|
|
|
|
COMMON_DEPEND="
|
|
brotli? ( app-arch/brotli )
|
|
boost? ( dev-libs/boost )
|
|
bzip3? ( app-arch/bzip3 )
|
|
bzip2? ( app-arch/bzip2 )
|
|
lz4? ( app-arch/lz4 )
|
|
lzma? ( app-arch/xz-utils )
|
|
pcre2? ( dev-libs/libpcre2 )
|
|
zlib? ( sys-libs/zlib )
|
|
zstd? ( app-arch/zstd )
|
|
"
|
|
|
|
RDEPEND="${COMMON_DEPEND}"
|
|
|
|
DEPEND="
|
|
${COMMON_DEPEND}
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
REQUIRED_USE="?? ( boost pcre2 )"
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
$(usev !cpu_flags_arm_neon '--disable-neon')
|
|
$(usev !cpu_flags_x86_avx2 '--disable-avx2')
|
|
$(usev !cpu_flags_x86_sse2 '--disable-sse2')
|
|
|
|
$(use_enable 7zip)
|
|
$(use_enable mmap)
|
|
|
|
$(use_with boost "boost-regex")
|
|
$(use_with brotli)
|
|
$(use_with bzip2 "bzlib")
|
|
$(use_with bzip3)
|
|
$(use_with pcre2)
|
|
$(use_with lzma)
|
|
$(use_with lz4)
|
|
$(use_with zlib)
|
|
$(use_with zstd)
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dobashcomp "${S}"/completions/bash/*
|
|
dofishcomp "${S}"/completions/fish/*
|
|
dozshcomp "${S}"/completions/zsh/_*
|
|
}
|
|
|
|
src_test() {
|
|
# emake check is run first by default in Portage but
|
|
# that doesn't actually run the tests, emake test does
|
|
emake test
|
|
}
|