public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-physics/geant-python: geant-python-4.9.5.ebuild geant-python-4.9.5_p01.ebuild
@ 2012-05-20 16:48 Benda XU (heroxbd)
  0 siblings, 0 replies; only message in thread
From: Benda XU (heroxbd) @ 2012-05-20 16:48 UTC (permalink / raw
  To: gentoo-commits

heroxbd     12/05/20 16:48:17

  Modified:             geant-python-4.9.5_p01.ebuild
  Added:                geant-python-4.9.5.ebuild
  Log:
  add version 4.9.5 for 4.9.5_p01 cannot function correctly, upstream bug http://bugzilla-geant4.kek.jp/show_bug.cgi?id=1317; add example USE flag.
  
  (Portage version: 2.1.10.57/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sci-physics/geant-python/geant-python-4.9.5_p01.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5_p01.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5_p01.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5_p01.ebuild?r1=1.1&r2=1.2

Index: geant-python-4.9.5_p01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5_p01.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- geant-python-4.9.5_p01.ebuild	20 May 2012 03:11:24 -0000	1.1
+++ geant-python-4.9.5_p01.ebuild	20 May 2012 16:48:17 -0000	1.2
@@ -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/sci-physics/geant-python/geant-python-4.9.5_p01.ebuild,v 1.1 2012/05/20 03:11:24 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5_p01.ebuild,v 1.2 2012/05/20 16:48:17 heroxbd Exp $
 
 EAPI=4
 
@@ -15,9 +15,9 @@
 
 LICENSE="geant4"
 SLOT="0"
-IUSE=""
+IUSE="examples"
 
-RDEPEND="sci-physics/geant:4 \
+RDEPEND="=sci-physics/geant-${PV}* \
 	dev-libs/boost[python]"
 DEPEND="${RDEPEND}"
 
@@ -77,4 +77,7 @@
 
 src_install() {
 	emake DESTDIR="${ED}" install
+	insinto /usr/share/doc/${PF}
+	dodoc 00README History AUTHORS
+	use examples && doins -r examples
 }



1.1                  sci-physics/geant-python/geant-python-4.9.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5.ebuild?rev=1.1&content-type=text/plain

Index: geant-python-4.9.5.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/geant-python/geant-python-4.9.5.ebuild,v 1.1 2012/05/20 16:48:17 heroxbd Exp $

EAPI=4

inherit python versionator

MYP="geant$(replace_version_separator 3 .)"

DESCRIPTION="Python binding for geant"
HOMEPAGE="http://geant4.cern.ch/"
SRC_URI="http://geant4.cern.ch/support/source/${MYP}.tar.gz"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"

LICENSE="geant4"
SLOT="0"
IUSE="examples"

RDEPEND="=sci-physics/geant-${PV}* \
	dev-libs/boost[python]"
DEPEND="${RDEPEND}"

S="${WORKDIR}/${MYP}/environments/g4py"

src_prepare() {
	# DISTDIR and python path patch
	epatch "${FILESDIR}"/${PN}-4.9.5-build.patch

	# set to the highest verbose for visManager
	epatch "${FILESDIR}"/${PN}-4.9.5-visverbose.patch

	# let Geant4 module installed into python sitedir instead of default
	sed -i "/G4PY_LIBDIR  :=/cG4PY_LIBDIR  := $\(DESTDIR\)$(python_get_sitedir)/Geant4" \
		config/install.gmk || die "sed failed on config/install.gmk"
	for mfile in source/python{3,}/GNUmakefile
	do
		sed -i "/install_dir :=/cinstall_dir := $\(DESTDIR\)$(python_get_sitedir)/Geant4" \
			"${mfile}" || die "sed failed on ${mfile}"
	done

	# let g4py module installed into python sitedir instead of default
	sed -i "/install_dir :=/cinstall_dir := $\(DESTDIR\)$(python_get_sitedir)/g4py" \
		config/site-install.gmk || die "sed failed on config/site-install.gmk"
	for mfile in {processes/emcalculator,utils/MCScore}/{python3/,}GNUmakefile python/GNUmakefile
	do
		sed -i "/install_dir :=/cinstall_dir := $\(DESTDIR\)$(python_get_sitedir)/g4py" \
			"site-modules/${mfile}" || die "sed failed on site-modules/${mfile}"
	done
}

src_configure() {
	case ${CHOST} in
		x86_64-pc-linux-gnu)
			ARG=linux64
			;;
		i?86-pc-linux-gnu)
			ARG=linux
			;;
		*)
			die "platform unknown"
			;;
	esac

	./configure ${ARG} \
		--prefix="${EPREFIX}/usr" \
		--with-g4-incdir="${EPREFIX}/usr/include/Geant4" \
		--with-g4-libdir="${EPREFIX}/usr/lib" \
		--with-clhep-incdir="${EPREFIX}/usr/include" \
		--with-clhep-libdir="${EPREFIX}/usr/lib" \
		--with-python-incdir="${EPREFIX}$(python_get_includedir)" \
		--with-python-libdir="${EPREFIX}$(python_get_libdir)" \
		--with-boost-incdir="${EPREFIX}/usr/include" \
		--with-boost-libdir="${EPREFIX}/usr/lib" \
	|| die "configure failed"
}

src_install() {
	emake DESTDIR="${ED}" install
	insinto /usr/share/doc/${PF}
	dodoc 00README History AUTHORS
	use examples && doins -r examples
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-05-20 16:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-20 16:48 [gentoo-commits] gentoo-x86 commit in sci-physics/geant-python: geant-python-4.9.5.ebuild geant-python-4.9.5_p01.ebuild Benda XU (heroxbd)

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