35 lines
591 B
Bash
35 lines
591 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="A deduplicating compressed archiver"
|
|
HOMEPAGE="http://zbackup.org/"
|
|
SRC_URI="https://github.com/zbackup/${PN}/archive/${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
dev-util/cmake
|
|
dev-libs/protobuf
|
|
dev-libs/protobuf-c
|
|
sys-libs/zlib
|
|
dev-libs/openssl
|
|
app-arch/xz-utils
|
|
dev-libs/lzo
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
src_prepare() {
|
|
cmake-utils_src_prepare
|
|
}
|
|
src_configure() {
|
|
cmake-utils_src_configure
|
|
}
|
|
|
|
|