2012-11-29 13:31:41 +01:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
inherit toolchain-funcs git-2
|
|
|
|
|
|
|
|
DESCRIPTION="android debug bridge"
|
|
|
|
HOMEPAGE="android.googlesource.com"
|
|
|
|
|
|
|
|
EGIT_REPO_URI="http://android.googlesource.com/platform/system/core.git"
|
2014-05-23 10:39:02 +02:00
|
|
|
EGIT_COMMIT="4f247d753a8865cd16292ff0b720b72c28049786"
|
2012-11-29 13:31:41 +01:00
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
|
|
|
|
DEPEND="sys-libs/zlib"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
src_compile(){
|
|
|
|
cd adb
|
2013-03-11 17:44:39 +01:00
|
|
|
cp ${FILESDIR}/Makefile Makefile
|
2012-11-29 13:31:41 +01:00
|
|
|
emake
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install(){
|
|
|
|
cd adb
|
|
|
|
einstall DESTDIR=${D}
|
|
|
|
}
|