summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2009-09-09 23:55:29 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2009-09-09 23:55:29 +0000
commit6eb06748ab6361735821bc8deba8b9a46c02cfc7 (patch)
treed024930136d33165b9a2ddda952a821f1b99e2ec /sci-physics
parentVersion bump (diff)
downloadgentoo-2-6eb06748ab6361735821bc8deba8b9a46c02cfc7.tar.gz
gentoo-2-6eb06748ab6361735821bc8deba8b9a46c02cfc7.tar.bz2
gentoo-2-6eb06748ab6361735821bc8deba8b9a46c02cfc7.zip
Removed old
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'sci-physics')
-rw-r--r--sci-physics/cernlib-montecarlo/ChangeLog6
-rw-r--r--sci-physics/cernlib-montecarlo/cernlib-montecarlo-2006-r1.ebuild70
2 files changed, 5 insertions, 71 deletions
diff --git a/sci-physics/cernlib-montecarlo/ChangeLog b/sci-physics/cernlib-montecarlo/ChangeLog
index f0ac414f8122..eb260d680d8d 100644
--- a/sci-physics/cernlib-montecarlo/ChangeLog
+++ b/sci-physics/cernlib-montecarlo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-physics/cernlib-montecarlo
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/cernlib-montecarlo/ChangeLog,v 1.6 2009/04/17 18:02:42 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/cernlib-montecarlo/ChangeLog,v 1.7 2009/09/09 23:55:29 bicatali Exp $
+
+ 09 Sep 2009; Sébastien Fabbro <bicatali@gentoo.org>
+ -cernlib-montecarlo-2006-r1.ebuild:
+ Removed old
*cernlib-montecarlo-2006-r2 (17 Apr 2009)
diff --git a/sci-physics/cernlib-montecarlo/cernlib-montecarlo-2006-r1.ebuild b/sci-physics/cernlib-montecarlo/cernlib-montecarlo-2006-r1.ebuild
deleted file mode 100644
index 22495a078cef..000000000000
--- a/sci-physics/cernlib-montecarlo/cernlib-montecarlo-2006-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2008 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-r1.ebuild,v 1.3 2008/06/29 07:59:22 tove Exp $
-
-inherit eutils multilib fortran
-
-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=""
-
-RDEPEND="x11-libs/openmotif
- virtual/lapack
- dev-lang/cfortran
- sci-physics/cernlib"
-
-DEPEND="${RDEPEND}
- virtual/latex-base
- x11-misc/imake
- x11-misc/makedepend"
-
-S="${WORKDIR}/${DEB_PN}-${DEB_PV}.orig"
-
-FORTRAN="gfortran g77 ifc"
-
-src_unpack() {
- unpack ${A}
- epatch "${DEB_P}-${DEB_PR}".diff
-
- cd "${S}"
- cp debian/add-ons/Makefile .
- export DEB_BUILD_OPTIONS="${FORTRANC} 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"
-
- # since we depend on cfortran, do not use the one from cernlib
- rm -f src/include/cfortran/cfortran.h
-}
-
-src_compile() {
- # create local LaTeX cache directory
- mkdir -p .texmf-var
- 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}" 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"
-}