diff options
author | 2011-07-14 03:50:33 +0000 | |
---|---|---|
committer | 2011-07-14 03:50:33 +0000 | |
commit | 56ce443838eade93ab622ebddd3fc07d2dea70b3 (patch) | |
tree | 185b9c0aed4e7c013743be89b4b92e3c6d91ee0e /dev-util/mingw64-runtime | |
parent | Updating live ebuild to use git-2 eclass (diff) | |
download | gentoo-2-56ce443838eade93ab622ebddd3fc07d2dea70b3.tar.gz gentoo-2-56ce443838eade93ab622ebddd3fc07d2dea70b3.tar.bz2 gentoo-2-56ce443838eade93ab622ebddd3fc07d2dea70b3.zip |
Version bump.
(Portage version: 2.2.0_alpha45/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/mingw64-runtime')
-rw-r--r-- | dev-util/mingw64-runtime/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/mingw64-runtime/mingw64-runtime-20110523.ebuild | 71 |
2 files changed, 79 insertions, 2 deletions
diff --git a/dev-util/mingw64-runtime/ChangeLog b/dev-util/mingw64-runtime/ChangeLog index 198145a8b660..825aae6f0529 100644 --- a/dev-util/mingw64-runtime/ChangeLog +++ b/dev-util/mingw64-runtime/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/mingw64-runtime -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/ChangeLog,v 1.7 2010/11/19 08:25:59 vapier Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/ChangeLog,v 1.8 2011/07/14 03:50:33 vapier Exp $ + +*mingw64-runtime-20110523 (14 Jul 2011) + + 14 Jul 2011; Mike Frysinger <vapier@gentoo.org> + +mingw64-runtime-20110523.ebuild: + Version bump. *mingw64-runtime-20101003 (19 Nov 2010) diff --git a/dev-util/mingw64-runtime/mingw64-runtime-20110523.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-20110523.ebuild new file mode 100644 index 000000000000..87b77e81c318 --- /dev/null +++ b/dev-util/mingw64-runtime/mingw64-runtime-20110523.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw64-runtime/mingw64-runtime-20110523.ebuild,v 1.1 2011/07/14 03:50:33 vapier Exp $ + +export CBUILD=${CBUILD:-${CHOST}} +export CTARGET=${CTARGET:-${CHOST}} +if [[ ${CTARGET} == ${CHOST} ]] ; then + if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then + export CTARGET=${CATEGORY/cross-} + fi +fi + +inherit flag-o-matic eutils + +DESCRIPTION="Free Win64 runtime and import library definitions" +HOMEPAGE="http://mingw-w64.sourceforge.net/" +SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64-v1.0-snapshot-${PV}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="crosscompile_opts_headers-only" +RESTRICT="strip" + +S=${WORKDIR}/mingw-w64-v1.0-${PV}/mingw-w64-crt + +is_crosscompile() { + [[ ${CHOST} != ${CTARGET} ]] +} +just_headers() { + use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]] +} + +pkg_setup() { + if [[ ${CBUILD} == ${CHOST} ]] && [[ ${CHOST} == ${CTARGET} ]] ; then + die "Invalid configuration" + fi +} + +src_unpack() { + unpack ${A} + find "${WORKDIR}" -type f -exec touch -r . {} + +} + +src_compile() { + # install the local headers as the crt step wants latest + pushd ../mingw-w64-headers >/dev/null + CHOST=${CTARGET} econf --with-sdk || die + emake install DESTDIR="${WORKDIR}/sysroot" || die + popd >/dev/null + + just_headers && return 0 + + CHOST=${CTARGET} strip-unsupported-flags + append-cppflags -isystem "${WORKDIR}/sysroot/usr/${CTARGET}/include" + CHOST=${CTARGET} econf || die + emake || die +} + +src_install() { + insinto /usr/${CTARGET}/usr/include + doins -r "${WORKDIR}"/sysroot/usr/${CTARGET}/include/* || die + is_crosscompile \ + && dosym usr /usr/${CTARGET}/${CTARGET} \ + && dosym usr/include /usr/${CTARGET}/sys-include + just_headers && return 0 + + emake install DESTDIR="${D}" || die + env -uRESTRICT CHOST=${CTARGET} prepallstrip + rm -rf "${D}"/usr/doc +} |