blob: 18d05aa5cd06c63de6fab44a10e09cd0dddeb7c4 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit eutils autotools
DESCRIPTION="Funambol Client SDK, C++ part only"
HOMEPAGE="https://www.forge.funambol.org/download/"
SRC_URI="http://dev.gentooexperimental.org/~dreeevil/funambol-sdk-cpp-8.0.0.tar.bz2"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_prepare() {
cd "${S}/build/autotools"
eautoreconf || die "Failed to autotoolize"
}
src_compile() {
cd "${S}/build/autotools"
emake || die "Failed to compilerize"
}
src_install() {
cd "${S}/build/autotools"
emake DESTDIR="${D}" install || die "Failed to installerize"
}
|