public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-games/ogre: ChangeLog ogre-1.4.8.ebuild
@ 2008-06-01 14:20 Tristan Heaven (nyhm)
  0 siblings, 0 replies; 2+ messages in thread
From: Tristan Heaven (nyhm) @ 2008-06-01 14:20 UTC (permalink / raw
  To: gentoo-commits

nyhm        08/06/01 14:20:35

  Modified:             ChangeLog
  Added:                ogre-1.4.8.ebuild
  Log:
  Version bump
  (Portage version: 2.2_pre7/cvs/Linux 2.6.25.4 Intel(R) Core(TM)2 Duo CPU E6750 @ 2.66GHz)

Revision  Changes    Path
1.49                 dev-games/ogre/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	9 Apr 2008 21:34:50 -0000	1.48
+++ ChangeLog	1 Jun 2008 14:20:35 -0000	1.49
@@ -1,6 +1,13 @@
 # ChangeLog for dev-games/ogre
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.48 2008/04/09 21:34:50 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.49 2008/06/01 14:20:35 nyhm Exp $
+
+*ogre-1.4.8 (01 Jun 2008)
+
+  01 Jun 2008; Tristan Heaven <nyhm@gentoo.org>
+  +files/ogre-1.4.8-as-needed.patch, +files/ogre-1.4.8-cegui.patch,
+  +ogre-1.4.8.ebuild:
+  Version bump
 
   09 Apr 2008; Michael Sterrett <mr_bones_@gentoo.org>
   +files/ogre-1.4.7-as-needed.patch, ogre-1.4.7.ebuild:



1.1                  dev-games/ogre/ogre-1.4.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ogre-1.4.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ogre-1.4.8.ebuild?rev=1.1&content-type=text/plain

Index: ogre-1.4.8.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.4.8.ebuild,v 1.1 2008/06/01 14:20:35 nyhm Exp $

inherit eutils autotools

DESCRIPTION="Object-oriented Graphics Rendering Engine"
HOMEPAGE="http://www.ogre3d.org/"
SRC_URI="mirror://sourceforge/ogre/ogre-v${PV//./-}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc cegui cg devil double-precision examples gtk openexr threads"
RESTRICT="test" #139905

RDEPEND="dev-libs/zziplib
	>=media-libs/freetype-2
	virtual/opengl
	virtual/glu
	x11-libs/libXt
	x11-libs/libXaw
	x11-libs/libXrandr
	x11-libs/libX11
	cegui? ( >=dev-games/cegui-0.5 )
	cg? ( media-gfx/nvidia-cg-toolkit )
	devil? ( media-libs/devil )
	gtk? ( >=x11-libs/gtk+-2 )
	openexr? ( media-libs/openexr )
	threads? ( dev-libs/boost )"
DEPEND="${RDEPEND}
	x11-proto/xf86vidmodeproto
	dev-util/pkgconfig"

S=${WORKDIR}/${PN}

pkg_setup() {
	if use threads && ! built_with_use --missing true dev-libs/boost threads
	then
		die "Please emerge dev-libs/boost with USE=threads"
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	ecvs_clean
	if use examples ; then
		cp -r Samples install-examples || die
		find install-examples \
			'(' -name 'Makefile*' -o -name obj -o \
			    -name bin -o -name '*.cbp' -o -name '*.vcproj*' ')' \
			-print0 | xargs -0 rm -rf
	fi
	sed -i -e '/CPPUNIT/d' configure.in || die "sed failed"
	epatch "${FILESDIR}"/${P}-*.patch
	eautoreconf
}

src_compile() {
	econf \
		--disable-dependency-tracking \
		--disable-freeimage \
		--disable-ogre-demos \
		--enable-static \
		--with-platform=GLX \
		--with-gui=$(usev gtk || echo Xt) \
		$(use_enable cegui) \
		$(use_enable cg) \
		$(use_enable devil) \
		$(use_enable double-precision double) \
		$(use_enable openexr) \
		$(use_enable threads threading) \
		|| die
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	if use doc ; then
		insinto /usr/share/doc/${PF}/html
		doins -r Docs/* || die "doins Docs failed"
	fi
	if use examples ; then
		insinto /usr/share/doc/${PF}/Samples
		doins -r install-examples/* || die "doins Samples failed"
	fi
	dodoc AUTHORS BUGS LINUX.DEV README
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-games/ogre: ChangeLog ogre-1.4.8.ebuild
@ 2008-06-02  1:59 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2008-06-02  1:59 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    08/06/02 01:59:42

  Modified:             ChangeLog ogre-1.4.8.ebuild
  Log:
  strip-flags for bugs like #186734
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.50                 dev-games/ogre/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/ogre/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	1 Jun 2008 14:20:35 -0000	1.49
+++ ChangeLog	2 Jun 2008 01:59:41 -0000	1.50
@@ -1,6 +1,9 @@
 # ChangeLog for dev-games/ogre
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.49 2008/06/01 14:20:35 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.50 2008/06/02 01:59:41 mr_bones_ Exp $
+
+  02 Jun 2008; Michael Sterrett <mr_bones_@gentoo.org> ogre-1.4.8.ebuild:
+  strip-flags for bugs like #186734
 
 *ogre-1.4.8 (01 Jun 2008)
 



1.2                  dev-games/ogre/ogre-1.4.8.ebuild

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

Index: ogre-1.4.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.4.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogre-1.4.8.ebuild	1 Jun 2008 14:20:35 -0000	1.1
+++ ogre-1.4.8.ebuild	2 Jun 2008 01:59:41 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.4.8.ebuild,v 1.1 2008/06/01 14:20:35 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.4.8.ebuild,v 1.2 2008/06/02 01:59:41 mr_bones_ Exp $
 
-inherit eutils autotools
+inherit eutils autotools flag-o-matic
 
 DESCRIPTION="Object-oriented Graphics Rendering Engine"
 HOMEPAGE="http://www.ogre3d.org/"
@@ -58,6 +58,7 @@
 }
 
 src_compile() {
+	strip-flags
 	econf \
 		--disable-dependency-tracking \
 		--disable-freeimage \



-- 
gentoo-commits@lists.gentoo.org mailing list



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

end of thread, other threads:[~2008-06-02  1:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-01 14:20 [gentoo-commits] gentoo-x86 commit in dev-games/ogre: ChangeLog ogre-1.4.8.ebuild Tristan Heaven (nyhm)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-02  1:59 Michael Sterrett (mr_bones_)

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