27 lines
481 B
Bash
27 lines
481 B
Bash
|
# Copyright 1999-2016 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
DESCRIPTION="A backup client for UrBackup"
|
||
|
HOMEPAGE="https://www.urbackup.org/"
|
||
|
SRC_URI="https://hndl.urbackup.org/Client/${PV}/${P}.tar.gz"
|
||
|
S="${WORKDIR}/${P}.0"
|
||
|
|
||
|
LICENSE="AGPL-3"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND=">=x11-libs/wxGTK-3
|
||
|
dev-libs/crypto++
|
||
|
sys-libs/zlib"
|
||
|
RDEPEND="${DEPEND}"
|
||
|
src_compile() {
|
||
|
emake
|
||
|
}
|
||
|
src_install() {
|
||
|
default
|
||
|
}
|