blob: c8da7bed5c3f4266f53a3c08eeb3d7503606877a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sparkleshare/sparkleshare-1.1.0.ebuild,v 1.3 2013/12/08 19:32:33 pacho Exp $
EAPI=5
GCONF_DEBUG="no" # --enable-debug does not do anything
inherit gnome2 mono-env
DESCRIPTION="Git-based collaboration and file sharing tool"
HOMEPAGE="http://www.sparkleshare.org"
SRC_URI="https://bitbucket.org/hbons/sparkleshare/downloads/sparkleshare-linux-${PV}-tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE="" # ayatana
COMMON_DEPEND=">=dev-lang/mono-2.8
>=dev-dotnet/glib-sharp-2.12.7
>=dev-dotnet/gtk-sharp-2.12.10
dev-dotnet/notify-sharp
dev-dotnet/webkit-sharp
"
RDEPEND="${COMMON_DEPEND}
>=dev-vcs/git-1.7.12
gnome-base/gvfs
net-misc/curl[ssl]
net-misc/openssh
"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
"
src_configure() {
DOCS="News.txt legal/Authors.txt README.md"
gnome2_src_configure --disable-appindicator
# $(use_enable ayatana appindicator)
# requires >=appindicator-sharp-0.0.7
}
|