summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2012-05-12 11:40:15 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2012-05-12 11:40:15 +0000
commitd26b294acc7d4fb1b93f871172516f1c24844755 (patch)
treef86e919724757d5bc0673ab559162b95f60461aa /sci-physics/hepmc
parentStable on alpha, bug #396329 (diff)
downloadgentoo-2-d26b294acc7d4fb1b93f871172516f1c24844755.tar.gz
gentoo-2-d26b294acc7d4fb1b93f871172516f1c24844755.tar.bz2
gentoo-2-d26b294acc7d4fb1b93f871172516f1c24844755.zip
Drop old
(Portage version: 2.2.0_alpha103/cvs/Linux x86_64)
Diffstat (limited to 'sci-physics/hepmc')
-rw-r--r--sci-physics/hepmc/ChangeLog6
-rw-r--r--sci-physics/hepmc/hepmc-2.06.05.ebuild60
-rw-r--r--sci-physics/hepmc/hepmc-2.06.06.ebuild66
-rw-r--r--sci-physics/hepmc/hepmc-2.06.07.ebuild87
4 files changed, 5 insertions, 214 deletions
diff --git a/sci-physics/hepmc/ChangeLog b/sci-physics/hepmc/ChangeLog
index 3331e255d544..95e67260ded3 100644
--- a/sci-physics/hepmc/ChangeLog
+++ b/sci-physics/hepmc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-physics/hepmc
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/hepmc/ChangeLog,v 1.31 2012/03/02 05:26:02 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/hepmc/ChangeLog,v 1.32 2012/05/12 11:40:15 xarthisius Exp $
+
+ 12 May 2012; Kacper Kowalik <xarthisius@gentoo.org> -hepmc-2.06.05.ebuild,
+ -hepmc-2.06.06.ebuild, -hepmc-2.06.07.ebuild:
+ Drop old
*hepmc-2.06.08 (02 Mar 2012)
diff --git a/sci-physics/hepmc/hepmc-2.06.05.ebuild b/sci-physics/hepmc/hepmc-2.06.05.ebuild
deleted file mode 100644
index 5a95b4fe7a9e..000000000000
--- a/sci-physics/hepmc/hepmc-2.06.05.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/hepmc/hepmc-2.06.05.ebuild,v 1.2 2011/06/08 15:15:24 jer Exp $
-
-EAPI=4
-
-inherit eutils
-
-MYP=HepMC-${PV}
-
-DESCRIPTION="Event Record for Monte Carlo Generators"
-HOMEPAGE="https://savannah.cern.ch/projects/hepmc/"
-SRC_URI="http://lcgapp.cern.ch/project/simu/HepMC/download/${MYP}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples gev cm static-libs"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${MYP}"
-
-src_configure() {
- # use MeV over GeV and mm over cm
- local length_conf="MM"
- use cm && length_conf="CM"
- local momentum_conf="MEV"
- use gev && momentum_conf="GEV"
- econf \
- --with-length=${length_conf} \
- --with-momentum=${momentum_conf} \
- $(use_enable static-libs static)
-}
-
-src_compile() {
- emake
- if use doc; then
- cd doc
- doxygen doxygen.conf || die "doc building failed"
- fi
-}
-
-src_install() {
- emake \
- DESTDIR="${ED}" \
- INSTALLDIR="${EPREFIX}/usr/share/doc/${PF}/examples" \
- doc_installdir="${EPREFIX}/usr/share/doc/${PF}" \
- install
-
- insinto /usr/share/doc/${PF}
- if use doc; then
- doins -r doc/html doc/*.pdf || die
- else
- rm -f "${ED}"/usr/share/doc/${PF}/*pdf
- fi
- use examples || rm -rf "${ED}"/usr/share/doc/${PF}/examples
-}
diff --git a/sci-physics/hepmc/hepmc-2.06.06.ebuild b/sci-physics/hepmc/hepmc-2.06.06.ebuild
deleted file mode 100644
index 4efc5233618a..000000000000
--- a/sci-physics/hepmc/hepmc-2.06.06.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/hepmc/hepmc-2.06.06.ebuild,v 1.1 2011/12/17 16:55:13 bicatali Exp $
-
-EAPI=4
-
-inherit eutils
-
-MYP=HepMC-${PV}
-
-DESCRIPTION="Event Record for Monte Carlo Generators"
-HOMEPAGE="https://savannah.cern.ch/projects/hepmc/"
-SRC_URI="http://lcgapp.cern.ch/project/simu/HepMC/download/${MYP}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples gev cm static-libs"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${MYP}"
-
-src_prepare() {
- sed -i \
- -e 's/2\.06\.05/2\.06\.06/g' \
- test/test*.dat test/test*.output || die
-}
-
-src_configure() {
- # use MeV over GeV and mm over cm
- local length_conf="MM"
- use cm && length_conf="CM"
- local momentum_conf="MEV"
- use gev && momentum_conf="GEV"
- econf \
- --with-length=${length_conf} \
- --with-momentum=${momentum_conf} \
- $(use_enable static-libs static)
-}
-
-src_compile() {
- emake
- if use doc; then
- cd doc
- doxygen doxygen.conf || die "doc building failed"
- fi
-}
-
-src_install() {
- emake \
- DESTDIR="${ED}" \
- INSTALLDIR="${EPREFIX}/usr/share/doc/${PF}/examples" \
- doc_installdir="${EPREFIX}/usr/share/doc/${PF}" \
- install
-
- insinto /usr/share/doc/${PF}
- if use doc; then
- doins -r doc/html doc/*.pdf
- else
- rm -f "${ED}"/usr/share/doc/${PF}/*pdf
- fi
- use examples || rm -rf "${ED}"/usr/share/doc/${PF}/examples
-}
diff --git a/sci-physics/hepmc/hepmc-2.06.07.ebuild b/sci-physics/hepmc/hepmc-2.06.07.ebuild
deleted file mode 100644
index 988f29f30196..000000000000
--- a/sci-physics/hepmc/hepmc-2.06.07.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/hepmc/hepmc-2.06.07.ebuild,v 1.1 2012/01/19 23:28:40 bicatali Exp $
-
-EAPI=4
-
-inherit cmake-utils
-
-MYP=HepMC-${PV}
-
-DESCRIPTION="Event Record for Monte Carlo Generators"
-HOMEPAGE="https://savannah.cern.ch/projects/hepmc/"
-SRC_URI="http://lcgapp.cern.ch/project/simu/HepMC/download/${MYP}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="cm doc examples gev static-libs test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen dev-tex/floatflt )"
-
-S="${WORKDIR}/${MYP}"
-
-DOCS=( ChangeLog AUTHORS )
-
-src_prepare() {
- sed -i -e '/add_subdirectory(doc)/d' CMakeLists.txt
- # CMake doc building broken
- # gentoo doc directory
- #sed -i \
- # -e "s:share/HepMC/doc:share/doc/${PF}:" \
- # doc/CMakeLists.txt || die
-
- # gentoo examples directory
- sed -i \
- -e "s:share/HepMC:share/doc/${PF}:" \
- $(find examples -name CMakeLists.txt) || die
-
- # respect user's flags
- sed -i \
- -e "s/-O -ansi -pedantic -Wall//g" \
- cmake/Modules/HepMCVariables.cmake || die
-
- # gentoo libdir love
- sed -i \
- -e '/DESTINATION/s/lib/lib${LIB_SUFFIX}/g' \
- {src,fio}/CMakeLists.txt || die
-
- # remove targets if use flags not set
- use examples || sed -i -e '/add_subdirectory(examples)/d' CMakeLists.txt
- use test || sed -i -e '/add_subdirectory(test)/d' CMakeLists.txt
- if ! use static-libs; then
- sed -i \
- -e '/(HepMC\(fio\|\)S/d' \
- -e '/TARGETS/s/HepMC\(fio\|\)S//' \
- {src,fio}/CMakeLists.txt || die
- fi
-}
-
-src_configure() {
- # use MeV over GeV and mm over cm
- local length_conf="MM"
- use cm && length_conf="CM"
- local momentum_conf="MEV"
- use gev && momentum_conf="GEV"
- mycmakeargs+=(
- -Dlength=${length_conf}
- -Dmomentum=${momentum_conf}
- )
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
- if use doc; then
- cd doc
- ./buildDoc.sh || die
- ./buildDoxygen.sh || die
- fi
-}
-
-src_install() {
- cmake-utils_src_install
- use doc && dodoc doc/*.pdf && dohtml -r doc/html/*
-}