mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 14:44:11 +02:00
Closes: https://bugs.gentoo.org/874666 Suggested-by: Grant Taylor <gentoo@gtaylor.tnetconsulting.net> Signed-off-by: Dennis Eisele <kernlpanic@dennis-eisele.de> Part-of: https://github.com/gentoo/gentoo/pull/41625 Closes: https://github.com/gentoo/gentoo/pull/41625 Signed-off-by: Sam James <sam@gentoo.org>
26 lines
558 B
Bash
26 lines
558 B
Bash
# Copyright 2022-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Rsync-bpc is a customized version of rsync that is used as part of BackupPC"
|
|
HOMEPAGE="https://github.com/backuppc/rsync-bpc"
|
|
SRC_URI="https://github.com/backuppc/rsync-bpc/releases/download/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="virtual/ssh"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-fix-gettimeofday-error.patch" #874666
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|