diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-06-20 05:53:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-06-20 05:53:42 +0000 |
commit | bd6b30b041550b7179944bca95a99258d80dfbbe (patch) | |
tree | 107fe05a96223480ea4bd0816ccaa3c34a035f33 /sys-devel | |
parent | respect USE=openmp even when cross-compiling #199995 by Quentin Casasnovas (diff) | |
download | gentoo-2-bd6b30b041550b7179944bca95a99258d80dfbbe.tar.gz gentoo-2-bd6b30b041550b7179944bca95a99258d80dfbbe.tar.bz2 gentoo-2-bd6b30b041550b7179944bca95a99258d80dfbbe.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/crossdev/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/crossdev/crossdev-20100620.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/sys-devel/crossdev/ChangeLog b/sys-devel/crossdev/ChangeLog index ed208e3ea595..cbe05aaa0365 100644 --- a/sys-devel/crossdev/ChangeLog +++ b/sys-devel/crossdev/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/crossdev # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/ChangeLog,v 1.65 2010/01/08 10:52:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/ChangeLog,v 1.66 2010/06/20 05:53:42 vapier Exp $ + +*crossdev-20100620 (20 Jun 2010) + + 20 Jun 2010; Mike Frysinger <vapier@gentoo.org> +crossdev-20100620.ebuild: + Version bump. *crossdev-20100108 (08 Jan 2010) diff --git a/sys-devel/crossdev/crossdev-20100620.ebuild b/sys-devel/crossdev/crossdev-20100620.ebuild new file mode 100644 index 000000000000..1b630104da87 --- /dev/null +++ b/sys-devel/crossdev/crossdev-20100620.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/crossdev-20100620.ebuild,v 1.1 2010/06/20 05:53:42 vapier Exp $ + +if [[ ${PV} == "99999999" ]] ; then + EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/crossdev.git" + inherit git + SRC_URI="" + #KEYWORDS="" +else + SRC_URI="mirror://gentoo/${P}.tar.lzma + http://dev.gentoo.org/~vapier/dist/${P}.tar.lzma" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +fi + +DESCRIPTION="Gentoo Cross-toolchain generator" +HOMEPAGE="http://www.gentoo.org/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +RDEPEND=">=sys-apps/portage-2.1 + app-shells/bash + !sys-devel/crossdev-wrappers" +DEPEND="" + +src_install() { + emake install DESTDIR="${D}" || die +} |