# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-physics/cernlib-montecarlo/cernlib-montecarlo-2006-r2.ebuild,v 1.5 2009/12/04 19:49:18 bicatali Exp $ EAPI=2 inherit eutils toolchain-funcs DEB_PN=mclibs DEB_PV=${PV}.dfsg.2 DEB_PR=5 DEB_P=${DEB_PN}_${DEB_PV} DESCRIPTION="Monte-carlo library and tools for the cernlib" HOMEPAGE="http://wwwasd.web.cern.ch/wwwasd/cernlib" LICENSE="GPL-2 LGPL-2 BSD" SRC_URI="mirror://debian/pool/main/${DEB_PN:0:1}/${DEB_PN}/${DEB_P}.orig.tar.gz mirror://debian/pool/main/${DEB_PN:0:1}/${DEB_PN}/${DEB_P}-${DEB_PR}.diff.gz" KEYWORDS="amd64 x86" SLOT="0" IUSE="+herwig" RDEPEND="x11-libs/openmotif dev-lang/cfortran sci-physics/cernlib herwig? ( !sci-physics/herwig )" DEPEND="${RDEPEND} virtual/latex-base x11-misc/imake x11-misc/makedepend" S="${WORKDIR}/${DEB_PN}-${DEB_PV}.orig" src_prepare() { cd "${WORKDIR}" sed -i -e 's:/tmp/dp.*/cern:cern:g' ${DEB_P}-${DEB_PR}.diff || die epatch ${DEB_P}-${DEB_PR}.diff cd "${S}" cp debian/add-ons/Makefile . export DEB_BUILD_OPTIONS="$(tc-getFC) nostrip nocheck" sed -i \ -e 's:/usr/local:/usr:g' \ Makefile || die "sed'ing the Makefile failed" einfo "Applying Debian patches" emake -j1 patch || die "debian patch failed" use herwig || epatch "${FILESDIR}"/${P}-noherwig.patch # since we depend on cfortran, do not use the one from cernlib rm -f src/include/cfortran/cfortran.h } src_compile() { VARTEXFONTS="${T}"/fonts emake -j1 cernlib-indep cernlib-arch || die "emake failed" } src_test() { LD_LIBRARY_PATH="${S}"/shlib \ emake -j1 cernlib-test || die "emake test failed" } src_install() { emake DESTDIR="${D}" \ MCDOC="${D}usr/share/doc/${PF}" \ install || die "emake install failed" cd "${S}"/debian dodoc changelog README.* deadpool.txt copyright || die "dodoc failed" newdoc add-ons/README README.add-ons || die "newdoc failed" }