Diff lesspipe-2.06 with a lesspipe-2.07
/usr/portage/app-text/lesspipe/lesspipe-2.07.ebuild 2023-10-09 14:52:28.880368335 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2022 Gentoo Authors |
|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=8 |
5 | 5 | |
6 |
inherit bash-completion-r1 |
|
6 |
inherit edo bash-completion-r1 |
|
7 | 7 | |
8 | 8 |
DESCRIPTION="A preprocessor for less" |
9 | 9 |
HOMEPAGE="https://github.com/wofr06/lesspipe" |
... | ... | |
27 | 27 | |
28 | 28 |
src_configure() { |
29 | 29 |
# Not an autoconf script. |
30 |
./configure --fixed || die |
|
30 |
edo ./configure --prefix="${EPREFIX}"/usr |
|
31 | 31 |
} |
32 | 32 | |
33 | 33 |
src_compile() { |
... | ... | |
39 | 39 |
emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install |
40 | 40 |
einstalldocs |
41 | 41 | |
42 |
rm -r "${ED}"/etc/bashcompletion.d || die |
|
42 |
rm "${ED}"/usr/share/bash-completion/less_completion || die |
|
43 | 43 |
newbashcomp less_completion less |
44 | 44 |
} |
45 | 45 |