public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/mingw-runtime: ChangeLog mingw-runtime-3.15.1.ebuild
@ 2008-10-05 17:50 Mike Frysinger (vapier)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2008-10-05 17:50 UTC (permalink / raw
  To: gentoo-commits

vapier      08/10/05 17:50:36

  Modified:             ChangeLog
  Added:                mingw-runtime-3.15.1.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)

Revision  Changes    Path
1.14                 dev-util/mingw-runtime/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	17 Sep 2008 09:36:52 -0000	1.13
+++ ChangeLog	5 Oct 2008 17:50:36 -0000	1.14
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/mingw-runtime
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v 1.13 2008/09/17 09:36:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v 1.14 2008/10/05 17:50:36 vapier Exp $
+
+*mingw-runtime-3.15.1 (05 Oct 2008)
+
+  05 Oct 2008; Mike Frysinger <vapier@gentoo.org>
+  +mingw-runtime-3.15.1.ebuild:
+  Version bump.
 
   17 Sep 2008; Mike Frysinger <vapier@gentoo.org>
   files/mingw-runtime-3.12-DESTDIR.patch:



1.1                  dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild?rev=1.1&content-type=text/plain

Index: mingw-runtime-3.15.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild,v 1.1 2008/10/05 17:50:36 vapier Exp $

# This version does not work as the configure script expects the installed
# cross-compiler to be able to link binaries ... except we haven't provided
# any of the crt objects yet so it is impossible to link binaries.
# Older mingw-runtime packages hacked around the issue, but this version seems
# to have dropped said hack thus breaking the package.

export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
	if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
		export CTARGET=${CATEGORY/cross-}
	fi
fi

inherit eutils flag-o-matic

MY_P="mingwrt-${PV}-mingw32"
DESCRIPTION="Free Win32 runtime and import library definitions"
HOMEPAGE="http://www.mingw.org/"
SRC_URI="mirror://sourceforge/mingw/${MY_P}-src.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="crosscompile_opts_headers-only"
RESTRICT="strip"

DEPEND=""

S=${WORKDIR}/${MY_P}

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}
	cd "${S}"
	sed -i \
		-e "/W32API_INCLUDE/s:=.*:='-I /usr/${CTARGET}/usr/include':" \
		$(find -name configure) || die
	epatch "${FILESDIR}"/${PN}-3.12-DESTDIR.patch
}

src_compile() {
	just_headers && return 0

	CHOST=${CTARGET} strip-unsupported-flags
	econf --host=${CTARGET} || die
	emake || die
}

src_install() {
	if just_headers ; then
		insinto /usr/${CTARGET}/usr/include
		doins -r include/* || die
	else
		local insdir
		is_crosscompile \
			&& insdir=${D}/usr/${CTARGET} \
			|| insdir=${D}
		emake install DESTDIR="${insdir}" || die
		env -uRESTRICT CHOST=${CTARGET} prepallstrip
		rm -rf "${insdir}"/usr/doc
		dodoc CONTRIBUTORS ChangeLog README TODO readme.txt
	fi
	is_crosscompile && dosym usr /usr/${CTARGET}/mingw
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/mingw-runtime: ChangeLog mingw-runtime-3.15.1.ebuild
@ 2009-01-10 23:25 Mike Frysinger (vapier)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2009-01-10 23:25 UTC (permalink / raw
  To: gentoo-commits

vapier      09/01/10 23:25:20

  Modified:             ChangeLog mingw-runtime-3.15.1.ebuild
  Log:
  Mark amd64/x86 stable.

Revision  Changes    Path
1.15                 dev-util/mingw-runtime/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	5 Oct 2008 17:50:36 -0000	1.14
+++ ChangeLog	10 Jan 2009 23:25:20 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/mingw-runtime
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v 1.14 2008/10/05 17:50:36 vapier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v 1.15 2009/01/10 23:25:20 vapier Exp $
+
+  10 Jan 2009; Mike Frysinger <vapier@gentoo.org> mingw-runtime-3.15.1.ebuild:
+  Mark amd64/x86 stable.
 
 *mingw-runtime-3.15.1 (05 Oct 2008)
 



1.2                  dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild?r1=1.1&r2=1.2

Index: mingw-runtime-3.15.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mingw-runtime-3.15.1.ebuild	5 Oct 2008 17:50:36 -0000	1.1
+++ mingw-runtime-3.15.1.ebuild	10 Jan 2009 23:25:20 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild,v 1.1 2008/10/05 17:50:36 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.15.1.ebuild,v 1.2 2009/01/10 23:25:20 vapier Exp $
 
 # This version does not work as the configure script expects the installed
 # cross-compiler to be able to link binaries ... except we haven't provided
@@ -25,7 +25,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="crosscompile_opts_headers-only"
 RESTRICT="strip"
 






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-01-10 23:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-10 23:25 [gentoo-commits] gentoo-x86 commit in dev-util/mingw-runtime: ChangeLog mingw-runtime-3.15.1.ebuild Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-05 17:50 Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox