diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-23 18:45:43 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-23 18:45:43 +0000 |
commit | 228136ba974b86b5e0227f6d0768ba5a00c9d5f5 (patch) | |
tree | 1be3cd120545d24d64213351db5e0360faf03a93 /sci-physics/geant | |
parent | Update skel.ebuild as announced at gentoo-dev ML (diff) | |
download | gentoo-2-228136ba974b86b5e0227f6d0768ba5a00c9d5f5.tar.gz gentoo-2-228136ba974b86b5e0227f6d0768ba5a00c9d5f5.tar.bz2 gentoo-2-228136ba974b86b5e0227f6d0768ba5a00c9d5f5.zip |
Added building of opengl qt4 driver, thanks merkel@kph.uni-mainz.de (bug #263450) for noticing
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'sci-physics/geant')
-rw-r--r-- | sci-physics/geant/ChangeLog | 7 | ||||
-rw-r--r-- | sci-physics/geant/geant-4.9.2-r2.ebuild | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/sci-physics/geant/ChangeLog b/sci-physics/geant/ChangeLog index 35788bcce6a9..68aea2039c1c 100644 --- a/sci-physics/geant/ChangeLog +++ b/sci-physics/geant/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-physics/geant # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/geant/ChangeLog,v 1.25 2009/03/22 21:54:13 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/geant/ChangeLog,v 1.26 2009/03/23 18:45:43 bicatali Exp $ + + 23 Mar 2009; Sébastien Fabbro <bicatali@gentoo.org> + geant-4.9.2-r2.ebuild: + Added building of opengl qt4 driver, thanks merkel@kph.uni-mainz.de (bug + #263450) for noticing 22 Mar 2009; Jeremy Olexa <darkside@gentoo.org> geant-4.9.2-r2.ebuild: amd64 stable, bug 245875 diff --git a/sci-physics/geant/geant-4.9.2-r2.ebuild b/sci-physics/geant/geant-4.9.2-r2.ebuild index b44bdb0a49b3..0880fe6bd1d0 100644 --- a/sci-physics/geant/geant-4.9.2-r2.ebuild +++ b/sci-physics/geant/geant-4.9.2-r2.ebuild @@ -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/sci-physics/geant/geant-4.9.2-r2.ebuild,v 1.4 2009/03/22 21:41:50 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/geant/geant-4.9.2-r2.ebuild,v 1.5 2009/03/23 18:45:43 bicatali Exp $ EAPI="2" @@ -116,7 +116,10 @@ src_configure() { if use qt4; then export G4UI_BUILD_QT_SESSION=y export QTLIBS="-L/usr/$(get_libdir)/qt4 -lQtCore -lQtGui" - use opengl && export GLQTLIBS="${QTLIBS} -lQtOpenGL" + if use opengl; then + export GLQTLIBS="${QTLIBS} -lQtOpenGL" + export G4VIS_BUILD_OPENGLQT_DRIVER=y + fi fi use dawn && export G4VIS_BUILD_DAWN_DRIVER=y use raytracerx && export G4VIS_BUILD_RAYTRACERX_DRIVER=y |