blob: 18c84f173ee59ce1191cd8d69f8232e0a52b022d (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit autotools subversion
DESCRIPTION="Funambol Client SDK"
HOMEPAGE="https://www.forge.funambol.org/download/"
ESVN_REPO_URI="https://client-sdk.forge.funambol.org/svn/client-sdk/trunk/cpp-sdk"
ESVN_USER="guest"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="net-misc/curl"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P}/build/autotools"
src_prepare() {
mkdir m4
eautoreconf
}
|