Install this version:
emerge -a =sys-fs/zrep-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-fs/zrep-9999
Or alternatively:
emerge --autounmask-write -a =sys-fs/zrep-9999
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=8
#PYTHON_COMPAT=( python2_7 )
if [[ $PV = *9999* ]]; then
scm_eclass=git-r3
EGIT_REPO_URI="
https://github.com/bolthole/zrep.git
git@github.com:bolthole/zrep.git"
SRC_URI=""
KEYWORDS=""
#else
# SRC_URI="http://.../${P}.tar.bz2"
# KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
else
scm_eclass=git-r3
EGIT_REPO_URI="
https://github.com/bolthole/zrep.git
git@github.com:bolthole/zrep.git"
SRC_URI=""
KEYWORDS="~amd64 ~x86"
fi
inherit autotools ${scm_eclass}
DESCRIPTION="ZFS based replication and failover solution"
HOMEPAGE="http://www.bolthole.com/solaris/zrep/"
LICENSE="ZREP"
SLOT="0"
#IUSE=""
CDEPEND="
sys-apps/nawk
"
DEPEND="${CDEPEND}
"
RDEPEND="${CDEPEND}
app-shells/ksh
sys-fs/zfs
"
src_install() {
# copy zrep script to expected directory
into /usr
dosbin zrep
}