29 lines
703 B
Bash
29 lines
703 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/mirall-1.1.0.ebuild,v 1.2 2012/10/15 08:19:54 scarabeus Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="Synchronization of your folders with another computers"
|
|
HOMEPAGE="http://owncloud.org/"
|
|
SRC_URI="http://download.owncloud.com/download/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
>=net-misc/csync-0.60.0[sftp,samba,webdav]
|
|
x11-libs/qt-core:4
|
|
x11-libs/qt-gui:4
|
|
x11-libs/qt-test:4
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
# Yay for fcked detection.
|
|
export CSYNC_DIR="${EPREFIX}/usr/include/ocsync/"
|
|
}
|