public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2008-12-21  9:47 Stefaan De Roeck (stefaan)
  0 siblings, 0 replies; 12+ messages in thread
From: Stefaan De Roeck (stefaan) @ 2008-12-21  9:47 UTC (permalink / raw
  To: gentoo-commits

stefaan     08/12/21 09:47:35

  Modified:             ChangeLog
  Added:                openinventor-2.1.5.10-r3.ebuild
  Log:
  Fix bug #251681
  (Portage version: 2.2_rc17/cvs/Linux 2.6.27-gentoo-r4 x86_64)

Revision  Changes    Path
1.22                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	17 Nov 2008 21:16:08 -0000	1.21
+++ ChangeLog	21 Dec 2008 09:47:34 -0000	1.22
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.21 2008/11/17 21:16:08 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.22 2008/12/21 09:47:34 stefaan Exp $
+
+*openinventor-2.1.5.10-r3 (21 Dec 2008)
+
+  21 Dec 2008; Stefaan De Roeck <stefaan@gentoo.org>
+  +files/bug-251681.patch, +openinventor-2.1.5.10-r3.ebuild:
+  Fix bug #251681
 
   17 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org>
   files/use-byacc.patch:



1.1                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.1&content-type=text/plain

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.1 2008/12/21 09:47:34 stefaan Exp $

inherit eutils versionator flag-o-matic

MY_PV=$(replace_version_separator 3 '-')
MY_PN="inventor"

DESCRIPTION="SGI OpenInventor Toolkit and Utilities"
HOMEPAGE="http://oss.sgi.com/projects/inventor/"
SRC_URI="ftp://oss.sgi.com/projects/${MY_PN}/download/${MY_PN}-${MY_PV}.src.tar.gz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~sparc ~x86"
IUSE=""

RDEPEND="media-libs/mesa
	x11-libs/openmotif
	>=media-libs/jpeg-6b
	>=media-libs/freetype-2.0
	media-fonts/corefonts"
DEPEND="dev-util/byacc
	${RDEPEND}"

S="${WORKDIR}/${MY_PN}"

pkg_setup() {
	if ! built_with_use media-libs/mesa motif; then
		echo
		eerror "In order to compile openinventor, you need to have media-libs/mesa emerged"
		eerror "with 'motif' in your USE flags. Please add that flag, re-emerge"
		eerror "media-libs/mesa, and then emerge openinventor"
		die "media-libs/mesa is missing motif"
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	# ordinary yacc fails
	epatch "${FILESDIR}"/use-byacc.patch
	# support for amd64, sparc and alpha
	epatch "${FILESDIR}"/support-archs.patch
	epatch "${FILESDIR}"/support-sparc.patch
	# freetype2 wasn't enabled by default
	epatch "${FILESDIR}"/freetype2-activate.patch
	# extra #include statement necessary for freetype2
	epatch "${FILESDIR}"/freetype2-includes.patch
	# script aiding in manual installation required csh
	epatch "${FILESDIR}"/no-csh.patch
	# put files in sane places
	epatch "${FILESDIR}"/gentoo-paths-v2.patch
	# fix compilation with gcc-4
	epatch "${FILESDIR}"/gcc4-support.patch
	# fix bug #251681
	epatch "${FILESDIR}"/bug-251681.patch
}

src_compile() {
	# -O2 segfaults on amd64 gcc-4.3 with ivman command (bicatali jun.08)
	replace-flags -O? -O1

	# VLDOPTS: find libraries during linking of executables
	# VLDDSOOPTS: find libraries during linking of libraries
	# VCFLAGS / VCXXFLAGS: pass user-chosen compiler flags
	# OPTIMIZER: do not override user-chosen compiler flags
	# system
	emake \
		VLDOPTS="-L${S}/lib -L${S}/libSoXt" \
		VLDDSOOPTS="-L${S}/lib -L${S}/libSoXt" \
		VCFLAGS="${CFLAGS}" VCXXFLAGS="${CXXFLAGS}" \
		OPTIMIZER= \
		|| die "Build failed"

	# fix RUNME-scripts in the demos directory for new paths
	sed -i \
		-e 's:/usr/share/:/usr/share/openinventor/:g' \
		-e 's:/usr/demos/:/usr/share/openinventor/demos/:g' \
		$(find apps/demos -name *.RUNME)
}

src_install() {
	# IVROOT: serves as DESTDIR
	# LLDOPTS: delete, so it won't go linking with libraries already on the
	# system
	# IVLIBDIR: multilib-strict compliance
	# LD_LIBRARY_PATH: support executables ran during install
	emake -j1 \
		IVROOT="${D}" \
		LLDOPTS= \
		IVLIBDIR="${D}usr/$(get_libdir)" \
		LD_LIBRARY_PATH="${D}usr/$(get_libdir)" \
		install \
		|| die "Install failed"

	# OpenInventor aliases for TrueType fonts
	local FONTDIR=/usr/share/fonts/corefonts
	local ALIASDIR=/usr/share/${PN}/fonts
	dodir ${ALIASDIR}
	dosym ${FONTDIR}/times.ttf ${ALIASDIR}/Times-Roman
	dosym ${FONTDIR}/arial.ttf ${ALIASDIR}/Helvetica
	dosym ${FONTDIR}/cour.ttf ${ALIASDIR}/Utopia-Regular
}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2009-01-19 13:25 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 12+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-01-19 13:25 UTC (permalink / raw
  To: gentoo-commits

fmccor      09/01/19 13:25:10

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  Sparc stable, Bug #251681 (required for geant).
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.1&r2=1.2

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openinventor-2.1.5.10-r3.ebuild	21 Dec 2008 09:47:34 -0000	1.1
+++ openinventor-2.1.5.10-r3.ebuild	19 Jan 2009 13:25:10 -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/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.1 2008/12/21 09:47:34 stefaan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.2 2009/01/19 13:25:10 fmccor Exp $
 
 inherit eutils versionator flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 sparc ~x86"
 IUSE=""
 
 RDEPEND="media-libs/mesa



1.23                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	21 Dec 2008 09:47:34 -0000	1.22
+++ ChangeLog	19 Jan 2009 13:25:10 -0000	1.23
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.22 2008/12/21 09:47:34 stefaan Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.23 2009/01/19 13:25:10 fmccor Exp $
+
+  19 Jan 2009; Ferris McCormick <fmccor@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild:
+  Sparc stable, Bug #251681 (required for geant).
 
 *openinventor-2.1.5.10-r3 (21 Dec 2008)
 






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2009-01-23 21:48 Markus Meier (maekke)
  0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2009-01-23 21:48 UTC (permalink / raw
  To: gentoo-commits

maekke      09/01/23 21:48:07

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #251681
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.2&r2=1.3

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openinventor-2.1.5.10-r3.ebuild	19 Jan 2009 13:25:10 -0000	1.2
+++ openinventor-2.1.5.10-r3.ebuild	23 Jan 2009 21:48:07 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.2 2009/01/19 13:25:10 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.3 2009/01/23 21:48:07 maekke Exp $
 
 inherit eutils versionator flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 sparc ~x86"
+KEYWORDS="~alpha amd64 sparc x86"
 IUSE=""
 
 RDEPEND="media-libs/mesa



1.24                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	19 Jan 2009 13:25:10 -0000	1.23
+++ ChangeLog	23 Jan 2009 21:48:07 -0000	1.24
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.23 2009/01/19 13:25:10 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.24 2009/01/23 21:48:07 maekke Exp $
+
+  23 Jan 2009; Markus Meier <maekke@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild:
+  amd64/x86 stable, bug #251681
 
   19 Jan 2009; Ferris McCormick <fmccor@gentoo.org>
   openinventor-2.1.5.10-r3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2009-01-25 15:07 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 12+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-01-25 15:07 UTC (permalink / raw
  To: gentoo-commits

klausman    09/01/25 15:07:27

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  Stable on alpha, bug #251681
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.3&r2=1.4

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- openinventor-2.1.5.10-r3.ebuild	23 Jan 2009 21:48:07 -0000	1.3
+++ openinventor-2.1.5.10-r3.ebuild	25 Jan 2009 15:07:27 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.3 2009/01/23 21:48:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.4 2009/01/25 15:07:27 klausman Exp $
 
 inherit eutils versionator flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 sparc x86"
+KEYWORDS="alpha amd64 sparc x86"
 IUSE=""
 
 RDEPEND="media-libs/mesa



1.25                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	23 Jan 2009 21:48:07 -0000	1.24
+++ ChangeLog	25 Jan 2009 15:07:27 -0000	1.25
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.24 2009/01/23 21:48:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.25 2009/01/25 15:07:27 klausman Exp $
+
+  25 Jan 2009; Tobias Klausmann <klausman@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild:
+  Stable on alpha, bug #251681
 
   23 Jan 2009; Markus Meier <maekke@gentoo.org>
   openinventor-2.1.5.10-r3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2009-02-07 21:11 Markus Meier (maekke)
  0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2009-02-07 21:11 UTC (permalink / raw
  To: gentoo-commits

maekke      09/02/07 21:11:28

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  respect CC etc, bug #256325
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.5                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.4&r2=1.5

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openinventor-2.1.5.10-r3.ebuild	25 Jan 2009 15:07:27 -0000	1.4
+++ openinventor-2.1.5.10-r3.ebuild	7 Feb 2009 21:11:28 -0000	1.5
@@ -1,8 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.4 2009/01/25 15:07:27 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.5 2009/02/07 21:11:28 maekke Exp $
 
-inherit eutils versionator flag-o-matic
+inherit eutils versionator flag-o-matic toolchain-funcs
 
 MY_PV=$(replace_version_separator 3 '-')
 MY_PN="inventor"
@@ -56,6 +56,13 @@
 	epatch "${FILESDIR}"/gcc4-support.patch
 	# fix bug #251681
 	epatch "${FILESDIR}"/bug-251681.patch
+
+	# respect CC etc
+	sed -i \
+		-e "s:CC  = /usr/bin/gcc:CC = $(tc-getCC):g" \
+		-e "s:C++ = /usr/bin/g++:C++ = $(tc-getCXX):g" \
+		-e "s:LD  = /usr/bin/g++:LD = $(tc-getCXX):g" \
+		make/ivcommondefs || die
 }
 
 src_compile() {



1.27                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	25 Jan 2009 16:02:50 -0000	1.26
+++ ChangeLog	7 Feb 2009 21:11:28 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.26 2009/01/25 16:02:50 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.27 2009/02/07 21:11:28 maekke Exp $
+
+  07 Feb 2009; Markus Meier <maekke@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild:
+  respect CC etc, bug #256325
 
   25 Jan 2009; Markus Meier <maekke@gentoo.org>
   -openinventor-2.1.5.10-r2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2009-08-06 14:57 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 12+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-08-06 14:57 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/08/06 14:57:11

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  Fix building with GCC 4.4+ and GLIBC 2.10+ wrt #277081.
  (Portage version: 2.2_rc36/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.5&r2=1.6

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- openinventor-2.1.5.10-r3.ebuild	7 Feb 2009 21:11:28 -0000	1.5
+++ openinventor-2.1.5.10-r3.ebuild	6 Aug 2009 14:57:11 -0000	1.6
@@ -1,11 +1,12 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.5 2009/02/07 21:11:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.6 2009/08/06 14:57:11 ssuominen Exp $
 
+EAPI=2
 inherit eutils versionator flag-o-matic toolchain-funcs
 
 MY_PV=$(replace_version_separator 3 '-')
-MY_PN="inventor"
+MY_PN=inventor
 
 DESCRIPTION="SGI OpenInventor Toolkit and Utilities"
 HOMEPAGE="http://oss.sgi.com/projects/inventor/"
@@ -16,25 +17,15 @@
 KEYWORDS="alpha amd64 sparc x86"
 IUSE=""
 
-RDEPEND="media-libs/mesa
+RDEPEND="media-libs/mesa[motif]
 	x11-libs/openmotif
 	>=media-libs/jpeg-6b
 	>=media-libs/freetype-2.0
 	media-fonts/corefonts"
-DEPEND="dev-util/byacc
-	${RDEPEND}"
+DEPEND="${RDEPEND}
+	dev-util/byacc"
 
-S="${WORKDIR}/${MY_PN}"
-
-pkg_setup() {
-	if ! built_with_use media-libs/mesa motif; then
-		echo
-		eerror "In order to compile openinventor, you need to have media-libs/mesa emerged"
-		eerror "with 'motif' in your USE flags. Please add that flag, re-emerge"
-		eerror "media-libs/mesa, and then emerge openinventor"
-		die "media-libs/mesa is missing motif"
-	fi
-}
+S=${WORKDIR}/${MY_PN}
 
 src_unpack() {
 	unpack ${A}
@@ -57,6 +48,8 @@
 	# fix bug #251681
 	epatch "${FILESDIR}"/bug-251681.patch
 
+	epatch "${FILESDIR}"/${P}-glibc-2.10.patch
+
 	# respect CC etc
 	sed -i \
 		-e "s:CC  = /usr/bin/gcc:CC = $(tc-getCC):g" \



1.28                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	7 Feb 2009 21:11:28 -0000	1.27
+++ ChangeLog	6 Aug 2009 14:57:11 -0000	1.28
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.27 2009/02/07 21:11:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.28 2009/08/06 14:57:11 ssuominen Exp $
+
+  06 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild,
+  +files/openinventor-2.1.5.10-glibc-2.10.patch:
+  Fix building with GCC 4.4+ and GLIBC 2.10+ wrt #277081.
 
   07 Feb 2009; Markus Meier <maekke@gentoo.org>
   openinventor-2.1.5.10-r3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2010-10-10 18:42 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 12+ messages in thread
From: Ulrich Mueller (ulm) @ 2010-10-10 18:42 UTC (permalink / raw
  To: gentoo-commits

ulm         10/10/10 18:42:21

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  Fix openmotif dependency.
  
  (Portage version: 2.1.9.14/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.7&r2=1.8

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openinventor-2.1.5.10-r3.ebuild	6 Aug 2009 14:59:32 -0000	1.7
+++ openinventor-2.1.5.10-r3.ebuild	10 Oct 2010 18:42:21 -0000	1.8
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.7 2009/08/06 14:59:32 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.8 2010/10/10 18:42:21 ulm Exp $
 
 EAPI=2
 inherit eutils versionator flag-o-matic toolchain-funcs
@@ -18,7 +18,7 @@
 IUSE=""
 
 RDEPEND="media-libs/mesa[motif]
-	x11-libs/openmotif
+	>=x11-libs/openmotif-2.3:0
 	>=media-libs/jpeg-6b
 	>=media-libs/freetype-2.0
 	media-fonts/corefonts"



1.29                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	6 Aug 2009 14:57:11 -0000	1.28
+++ ChangeLog	10 Oct 2010 18:42:21 -0000	1.29
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.28 2009/08/06 14:57:11 ssuominen Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.29 2010/10/10 18:42:21 ulm Exp $
+
+  10 Oct 2010; Ulrich Mueller <ulm@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild:
+  Fix openmotif dependency.
 
   06 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
   openinventor-2.1.5.10-r3.ebuild,






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2010-11-08 23:18 Markus Meier (maekke)
  0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2010-11-08 23:18 UTC (permalink / raw
  To: gentoo-commits

maekke      10/11/08 23:18:37

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  change jpeg dep to virtual/jpeg
  
  (Portage version: 2.1.9.24/cvs/Linux i686)

Revision  Changes    Path
1.9                  media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.8&r2=1.9

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- openinventor-2.1.5.10-r3.ebuild	10 Oct 2010 18:42:21 -0000	1.8
+++ openinventor-2.1.5.10-r3.ebuild	8 Nov 2010 23:18:37 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.8 2010/10/10 18:42:21 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.9 2010/11/08 23:18:37 maekke Exp $
 
 EAPI=2
 inherit eutils versionator flag-o-matic toolchain-funcs
@@ -19,9 +19,9 @@
 
 RDEPEND="media-libs/mesa[motif]
 	>=x11-libs/openmotif-2.3:0
-	>=media-libs/jpeg-6b
 	>=media-libs/freetype-2.0
-	media-fonts/corefonts"
+	media-fonts/corefonts
+	virtual/jpeg"
 DEPEND="${RDEPEND}
 	dev-util/byacc"
 



1.30                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	10 Oct 2010 18:42:21 -0000	1.29
+++ ChangeLog	8 Nov 2010 23:18:37 -0000	1.30
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.29 2010/10/10 18:42:21 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.30 2010/11/08 23:18:37 maekke Exp $
+
+  08 Nov 2010; Markus Meier <maekke@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild:
+  change jpeg dep to virtual/jpeg
 
   10 Oct 2010; Ulrich Mueller <ulm@gentoo.org>
   openinventor-2.1.5.10-r3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2012-03-04  9:52 Justin Lecher (jlec)
  0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher (jlec) @ 2012-03-04  9:52 UTC (permalink / raw
  To: gentoo-commits

jlec        12/03/04 09:52:45

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  Adopt deps to unbundled x11-libs/libGLw situation
  
  (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.9&r2=1.10

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- openinventor-2.1.5.10-r3.ebuild	8 Nov 2010 23:18:37 -0000	1.9
+++ openinventor-2.1.5.10-r3.ebuild	4 Mar 2012 09:52:45 -0000	1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.9 2010/11/08 23:18:37 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.10 2012/03/04 09:52:45 jlec Exp $
 
 EAPI=2
 inherit eutils versionator flag-o-matic toolchain-funcs
@@ -17,7 +17,10 @@
 KEYWORDS="alpha amd64 sparc x86"
 IUSE=""
 
-RDEPEND="media-libs/mesa[motif]
+RDEPEND="
+	|| (
+		media-libs/mesa[motif]
+		( media-libs/mesa x11-libs/libGLw ) )
 	>=x11-libs/openmotif-2.3:0
 	>=media-libs/freetype-2.0
 	media-fonts/corefonts



1.32                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	13 Sep 2011 17:50:43 -0000	1.31
+++ ChangeLog	4 Mar 2012 09:52:45 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/openinventor
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.31 2011/09/13 17:50:43 pacho Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.32 2012/03/04 09:52:45 jlec Exp $
+
+  04 Mar 2012; Justin Lecher <jlec@gentoo.org> openinventor-2.1.5.10-r3.ebuild:
+  Adopt deps to unbundled x11-libs/libGLw situation
 
   13 Sep 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml:
   Drop maintainer due retirement, bug #99651






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2012-06-09  0:17 Zac Medico (zmedico)
  0 siblings, 0 replies; 12+ messages in thread
From: Zac Medico (zmedico) @ 2012-06-09  0:17 UTC (permalink / raw
  To: gentoo-commits

zmedico     12/06/09 00:17:35

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  inherit multilib for get_libdir
  
  (Portage version: 2.2.0_alpha110_p4/cvs/Linux i686)

Revision  Changes    Path
1.11                 media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.10&r2=1.11

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- openinventor-2.1.5.10-r3.ebuild	4 Mar 2012 09:52:45 -0000	1.10
+++ openinventor-2.1.5.10-r3.ebuild	9 Jun 2012 00:17:35 -0000	1.11
@@ -1,9 +1,9 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.10 2012/03/04 09:52:45 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.11 2012/06/09 00:17:35 zmedico Exp $
 
 EAPI=2
-inherit eutils versionator flag-o-matic toolchain-funcs
+inherit eutils flag-o-matic multilib toolchain-funcs versionator
 
 MY_PV=$(replace_version_separator 3 '-')
 MY_PN=inventor



1.33                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	4 Mar 2012 09:52:45 -0000	1.32
+++ ChangeLog	9 Jun 2012 00:17:35 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.32 2012/03/04 09:52:45 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.33 2012/06/09 00:17:35 zmedico Exp $
+
+  09 Jun 2012; Zac Medico <zmedico@gentoo.org> openinventor-2.1.5.10-r3.ebuild:
+  inherit multilib for get_libdir
 
   04 Mar 2012; Justin Lecher <jlec@gentoo.org> openinventor-2.1.5.10-r3.ebuild:
   Adopt deps to unbundled x11-libs/libGLw situation






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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2012-10-24 19:13 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 12+ messages in thread
From: Ulrich Mueller (ulm) @ 2012-10-24 19:13 UTC (permalink / raw
  To: gentoo-commits

ulm         12/10/24 19:13:38

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  Update dependency after package move from x11-libs/openmotif to x11-libs/motif.
  
  (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key E7BE08CA7DC6EA25)

Revision  Changes    Path
1.12                 media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.11&r2=1.12

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- openinventor-2.1.5.10-r3.ebuild	9 Jun 2012 00:17:35 -0000	1.11
+++ openinventor-2.1.5.10-r3.ebuild	24 Oct 2012 19:13:38 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.11 2012/06/09 00:17:35 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.12 2012/10/24 19:13:38 ulm Exp $
 
 EAPI=2
 inherit eutils flag-o-matic multilib toolchain-funcs versionator
@@ -21,7 +21,7 @@
 	|| (
 		media-libs/mesa[motif]
 		( media-libs/mesa x11-libs/libGLw ) )
-	>=x11-libs/openmotif-2.3:0
+	>=x11-libs/motif-2.3:0
 	>=media-libs/freetype-2.0
 	media-fonts/corefonts
 	virtual/jpeg"



1.34                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	9 Jun 2012 00:17:35 -0000	1.33
+++ ChangeLog	24 Oct 2012 19:13:38 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.33 2012/06/09 00:17:35 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.34 2012/10/24 19:13:38 ulm Exp $
+
+  24 Oct 2012; Ulrich Müller <ulm@gentoo.org> openinventor-2.1.5.10-r3.ebuild:
+  Update dependency after package move from x11-libs/openmotif to
+  x11-libs/motif.
 
   09 Jun 2012; Zac Medico <zmedico@gentoo.org> openinventor-2.1.5.10-r3.ebuild:
   inherit multilib for get_libdir





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

* [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog
@ 2013-01-28  2:46 Matt Turner (mattst88)
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Turner (mattst88) @ 2013-01-28  2:46 UTC (permalink / raw
  To: gentoo-commits

mattst88    13/01/28 02:46:49

  Modified:             openinventor-2.1.5.10-r3.ebuild ChangeLog
  Log:
  Added virtual/glu to dependencies, bug 438936.
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)

Revision  Changes    Path
1.13                 media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild?r1=1.12&r2=1.13

Index: openinventor-2.1.5.10-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- openinventor-2.1.5.10-r3.ebuild	24 Oct 2012 19:13:38 -0000	1.12
+++ openinventor-2.1.5.10-r3.ebuild	28 Jan 2013 02:46:49 -0000	1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.12 2012/10/24 19:13:38 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10-r3.ebuild,v 1.13 2013/01/28 02:46:49 mattst88 Exp $
 
 EAPI=2
 inherit eutils flag-o-matic multilib toolchain-funcs versionator
@@ -24,6 +24,7 @@
 	>=x11-libs/motif-2.3:0
 	>=media-libs/freetype-2.0
 	media-fonts/corefonts
+	virtual/glu
 	virtual/jpeg"
 DEPEND="${RDEPEND}
 	dev-util/byacc"



1.35                 media-libs/openinventor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openinventor/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	24 Oct 2012 19:13:38 -0000	1.34
+++ ChangeLog	28 Jan 2013 02:46:49 -0000	1.35
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/openinventor
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.34 2012/10/24 19:13:38 ulm Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.35 2013/01/28 02:46:49 mattst88 Exp $
+
+  28 Jan 2013; Matt Turner <mattst88@gentoo.org>
+  openinventor-2.1.5.10-r3.ebuild:
+  Added virtual/glu to dependencies, bug 438936.
 
   24 Oct 2012; Ulrich Müller <ulm@gentoo.org> openinventor-2.1.5.10-r3.ebuild:
   Update dependency after package move from x11-libs/openmotif to
@@ -149,4 +153,3 @@
   +files/support-archs.patch, +files/use-byacc.patch, +metadata.xml,
   +openinventor-2.1.5.10.ebuild:
   New ebuild for SGI OpenInventor, fixes bug #31742
-





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

end of thread, other threads:[~2013-01-28  2:46 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-06 14:57 [gentoo-commits] gentoo-x86 commit in media-libs/openinventor: openinventor-2.1.5.10-r3.ebuild ChangeLog Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-28  2:46 Matt Turner (mattst88)
2012-10-24 19:13 Ulrich Mueller (ulm)
2012-06-09  0:17 Zac Medico (zmedico)
2012-03-04  9:52 Justin Lecher (jlec)
2010-11-08 23:18 Markus Meier (maekke)
2010-10-10 18:42 Ulrich Mueller (ulm)
2009-02-07 21:11 Markus Meier (maekke)
2009-01-25 15:07 Tobias Klausmann (klausman)
2009-01-23 21:48 Markus Meier (maekke)
2009-01-19 13:25 Ferris McCormick (fmccor)
2008-12-21  9:47 Stefaan De Roeck (stefaan)

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