diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-08-12 16:33:52 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-08-12 16:33:52 +0000 |
commit | 824b94088fffb2a5f930bacac82cad7b2b188a31 (patch) | |
tree | 08bfd844b1b109c6144c37c60cae45ca813130be /sci-physics | |
parent | Version bump (diff) | |
download | gentoo-2-824b94088fffb2a5f930bacac82cad7b2b188a31.tar.gz gentoo-2-824b94088fffb2a5f930bacac82cad7b2b188a31.tar.bz2 gentoo-2-824b94088fffb2a5f930bacac82cad7b2b188a31.zip |
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/clhep/ChangeLog | 8 | ||||
-rw-r--r-- | sci-physics/clhep/clhep-2.1.0.0.ebuild (renamed from sci-physics/clhep/clhep-2.0.4.5.ebuild) | 13 |
2 files changed, 14 insertions, 7 deletions
diff --git a/sci-physics/clhep/ChangeLog b/sci-physics/clhep/ChangeLog index dae318569f06..2963f351c1ce 100644 --- a/sci-physics/clhep/ChangeLog +++ b/sci-physics/clhep/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-physics/clhep # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.27 2010/07/18 12:38:35 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.28 2010/08/12 16:33:52 bicatali Exp $ + +*clhep-2.1.0.0 (12 Aug 2010) + + 12 Aug 2010; Sébastien Fabbro <bicatali@gentoo.org> + -clhep-2.0.4.5.ebuild, +clhep-2.1.0.0.ebuild: + Version bump 18 Jul 2010; <nixnut@gentoo.org> clhep-2.0.4.6.ebuild: ppc stable #318457 diff --git a/sci-physics/clhep/clhep-2.0.4.5.ebuild b/sci-physics/clhep/clhep-2.1.0.0.ebuild index 23be61680e4e..af6a42c1a3e7 100644 --- a/sci-physics/clhep/clhep-2.0.4.5.ebuild +++ b/sci-physics/clhep/clhep-2.1.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 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.5.ebuild,v 1.7 2010/01/31 15:37:47 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.1.0.0.ebuild,v 1.1 2010/08/12 16:33:52 bicatali Exp $ EAPI=2 inherit autotools eutils @@ -10,16 +10,16 @@ HOMEPAGE="http://www.cern.ch/clhep" SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz" LICENSE="public-domain" SLOT="2" -KEYWORDS="amd64 hppa ppc sparc x86" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" -IUSE="exceptions" +IUSE="exceptions static-libs" RDEPEND="" DEPEND="${RDEPEND}" S="${WORKDIR}/${PV}/CLHEP" src_prepare() { - for d in $(find . -name configure.in); do + for d in $(find . -name configure.ac); do # respect user flags and fix some compilers stuff sed -i \ -e 's:^g++):*g++):g' \ @@ -36,12 +36,13 @@ src_prepare() { ${d} || die # fixing parallel build done - epatch "${FILESDIR}/${P}-gcc4.3.patch" eautoreconf } src_configure() { - econf $(use_enable exceptions) + econf \ + $(use_enable exceptions) \ + $(use_enable static-libs static) } src_install() { |