# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # Created by Martin Kupec EAPI=4 inherit eutils python autotools DESCRIPTION="Cloud file syncing software" HOMEPAGE="http://www.seafile.com" SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${PN}-${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" DEPEND="=net-misc/seafile-${PV}[-client] dev-libs/jansson" RDEPEND="" pkg_setup() { python_set_active_version 2 python_pkg_setup } src_compile() { cmake . || die "src_compile failed" emake -j1 || die "emake failed" }