diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-04-17 13:34:37 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-04-17 13:34:37 +0000 |
commit | 02ab7c1826f14209668ea85f240768106b63eb03 (patch) | |
tree | 4d7ff4441c0bb657e95b7b804c68d4147978bc1d /sci-physics | |
parent | Version bump dev-haskell/stm-2.1.1.2 (diff) | |
download | gentoo-2-02ab7c1826f14209668ea85f240768106b63eb03.tar.gz gentoo-2-02ab7c1826f14209668ea85f240768106b63eb03.tar.bz2 gentoo-2-02ab7c1826f14209668ea85f240768106b63eb03.zip |
Removed old version
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/clhep/ChangeLog | 6 | ||||
-rw-r--r-- | sci-physics/clhep/clhep-2.0.4.0.ebuild | 50 |
2 files changed, 5 insertions, 51 deletions
diff --git a/sci-physics/clhep/ChangeLog b/sci-physics/clhep/ChangeLog index 2ef903c23445..710b9da88c78 100644 --- a/sci-physics/clhep/ChangeLog +++ b/sci-physics/clhep/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-physics/clhep # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.9 2009/03/22 21:51:09 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.10 2009/04/17 13:34:37 bicatali Exp $ + + 17 Apr 2009; Sébastien Fabbro <bicatali@gentoo.org> + -clhep-2.0.4.0.ebuild: + Removed old version 22 Mar 2009; Jeremy Olexa <darkside@gentoo.org> clhep-2.0.4.2.ebuild amd64 stable, bug 245875 diff --git a/sci-physics/clhep/clhep-2.0.4.0.ebuild b/sci-physics/clhep/clhep-2.0.4.0.ebuild deleted file mode 100644 index 97b7b283bcad..000000000000 --- a/sci-physics/clhep/clhep-2.0.4.0.ebuild +++ /dev/null @@ -1,50 +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/clhep/clhep-2.0.4.0.ebuild,v 1.1 2008/08/22 14:26:15 bicatali Exp $ - -inherit autotools flag-o-matic toolchain-funcs - -DESCRIPTION="High Energy Physics C++ library" -HOMEPAGE="http://www.cern.ch/clhep" -SRC_URI="http://wwwasd.web.cern.ch/wwwasd/lhc++/clhep/DISTRIBUTION/distributions/${P}.tgz" - -LICENSE="public-domain" -SLOT="2" -KEYWORDS="~amd64 ~hppa ~sparc ~x86" - -IUSE="exceptions" -RDEPEND="" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${PV}/CLHEP" - -src_unpack() { - unpack ${A} - cd "${S}" - for d in $(find . -name configure.in); do - pushd ${d/configure.in/} - # respect user flags and fix some compilers stuff - sed -i \ - -e 's:^g++):*g++):g' \ - -e 's:^icc):icc|icpc):g' \ - -e '/AM_CXXFLAGS=/s:-O ::g' \ - configure.in || die - # need to rebuild because original configurations - # have buggy detection - eautoconf - popd - done -} - -src_compile() { - # use ld LDFLAGS for intel compiler - [[ $(tc-getCXX) = i*c ]] && \ - export LDFLAGS="$(raw-ldflags)" - econf $(use_enable exceptions) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README ChangeLog || die -} |