Diff symlinks-1.4-r4 with a symlinks-1.4.3
/usr/portage/app-misc/symlinks/symlinks-1.4.3.ebuild 2025-07-29 16:22:12.584448103 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
1 |
# Copyright 1999-2025 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=8 |
... | ... | |
6 | 6 |
inherit flag-o-matic toolchain-funcs |
7 | 7 | |
8 | 8 |
DESCRIPTION="Scans for and fixes broken or messy symlinks" |
9 |
HOMEPAGE="https://www.ibiblio.org/pub/linux/utils/file/" |
|
10 |
SRC_URI="https://www.ibiblio.org/pub/linux/utils/file/${P}.tar.gz" |
|
9 |
HOMEPAGE="https://github.com/brandt/symlinks" |
|
10 |
SRC_URI="https://github.com/brandt/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" |
|
11 | 11 | |
12 | 12 |
LICENSE="symlinks" |
13 | 13 |
SLOT="0" |
14 | 14 |
KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 sparc x86" |
15 | 15 |
IUSE="static" |
16 | 16 | |
17 |
DOCS=( symlinks.lsm ) |
|
17 |
DOCS=( Readme.md ) |
|
18 | 18 | |
19 | 19 |
src_prepare() { |
20 | 20 |
default |
... | ... | |
23 | 23 |
# functioning. |
24 | 24 |
use static && append-flags -static |
25 | 25 |
append-lfs-flags |
26 |
sed 's:-O2::g' -i Makefile || die |
|
27 | 26 |
} |
28 | 27 | |
29 | 28 |
src_compile() { |
... | ... | |
33 | 32 |
src_install() { |
34 | 33 |
dobin "${PN}" |
35 | 34 |
doman "${PN}.8" |
35 |
einstalldocs |
|
36 | 36 |
} |