diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2011-08-01 02:05:10 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2011-08-01 02:05:10 +0000 |
commit | 67d311c79f00204e09cfa07162a31dea61ca66fe (patch) | |
tree | e1782e5f24d5b7e83f433e7bc2c859621fe7a0a9 /sys-devel | |
parent | Clean up patch. (diff) | |
download | gentoo-2-67d311c79f00204e09cfa07162a31dea61ca66fe.tar.gz gentoo-2-67d311c79f00204e09cfa07162a31dea61ca66fe.tar.bz2 gentoo-2-67d311c79f00204e09cfa07162a31dea61ca66fe.zip |
Version bump
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/ct-ng/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/ct-ng/ct-ng-1.12.0.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/sys-devel/ct-ng/ChangeLog b/sys-devel/ct-ng/ChangeLog index 74ad6de58a43..e7d43eb183e2 100644 --- a/sys-devel/ct-ng/ChangeLog +++ b/sys-devel/ct-ng/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/ct-ng # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v 1.13 2011/05/30 23:13:37 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v 1.14 2011/08/01 02:05:10 blueness Exp $ + +*ct-ng-1.12.0 (01 Aug 2011) + + 01 Aug 2011; Anthony G. Basile <blueness@gentoo.org> +ct-ng-1.12.0.ebuild: + Version bump *ct-ng-1.11.3 (30 May 2011) diff --git a/sys-devel/ct-ng/ct-ng-1.12.0.ebuild b/sys-devel/ct-ng/ct-ng-1.12.0.ebuild new file mode 100644 index 000000000000..9127f491ff9f --- /dev/null +++ b/sys-devel/ct-ng/ct-ng-1.12.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ct-ng-1.12.0.ebuild,v 1.1 2011/08/01 02:05:10 blueness Exp $ + +inherit bash-completion + +DESCRIPTION="crosstool-ng is a tool to build cross-compiling toolchains" +HOMEPAGE="http://ymorin.is-a-geek.org/projects/crosstool" +MY_P=${P/ct/crosstool} +S=${WORKDIR}/${MY_P} +SRC_URI="http://ymorin.is-a-geek.org/download/crosstool-ng/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="bash-completion" + +RDEPEND="net-misc/curl + dev-vcs/cvs + dev-vcs/subversion" + +src_install() { + emake DESTDIR="${D%/}" install || die "install failed" + dobashcompletion ct-ng.comp + dodoc README TODO +} |