| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ct-ng-1.13.4.ebuild,v 1.1 2012/02/10 11:44:10 blueness Exp $
|
| 4 |
|
| 5 |
EAPI="4"
|
| 6 |
|
| 7 |
inherit bash-completion-r1
|
| 8 |
|
| 9 |
DESCRIPTION="crosstool-ng is a tool to build cross-compiling toolchains"
|
| 10 |
HOMEPAGE="http://crosstool-ng.org"
|
| 11 |
MY_P=${P/ct/crosstool}
|
| 12 |
S=${WORKDIR}/${MY_P}
|
| 13 |
SRC_URI="http://ymorin.is-a-geek.org/download/crosstool-ng/${MY_P}.tar.bz2"
|
| 14 |
|
| 15 |
LICENSE="GPL-2"
|
| 16 |
SLOT="0"
|
| 17 |
KEYWORDS="~amd64 ~x86"
|
| 18 |
IUSE="bash-completion"
|
| 19 |
|
| 20 |
RDEPEND="net-misc/curl
|
| 21 |
dev-vcs/cvs
|
| 22 |
dev-vcs/subversion"
|
| 23 |
|
| 24 |
src_install() {
|
| 25 |
emake DESTDIR="${D%/}" install || die "install failed"
|
| 26 |
dobashcomp ${PN}.comp
|
| 27 |
dodoc README TODO
|
| 28 |
}
|