blob: 04ba435fb880202c31697a73448ecb9f595c295b (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/android-sdk/android-sdk-1.0_p2.ebuild,v 1.1 2009/01/17 14:54:52 rich0 Exp $
MY_P="${PN}-linux_x86-${PV/_p/_r}"
DESCRIPTION="Open Handset Alliance's Android SDK/"
HOMEPAGE="http://code.google.com/android"
SRC_URI="http://dl.google.com/android/${MY_P}.zip"
RESTRICT="mirror"
LICENSE="android"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc examples"
DEPEND="app-arch/unzip"
RDEPEND=">=virtual/jdk-1.5
>=dev-java/ant-core-1.6.5"
src_install(){
local destdir="/opt/${P/_p*/}"
dodir "${destdir}"
cd "${MY_P}"
dodoc tools/NOTICE.txt RELEASE_NOTES.txt || die
rm -f tools/NOTICE.txt
cp -pPR tools android.jar "${D}/${destdir}/" || die "failed to copy"
if use examples; then
cp -pPR samples "${D}/${destdir}/" || die "failed to copy"
fi
use doc && dohtml -r docs documentation.html
echo "PATH=\"${destdir}/tools\"" > "${T}/80android"
doenvd "${T}/80android"
}
|