diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2014-02-27 18:58:17 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2014-02-27 18:58:17 +0000 |
commit | d6e0add5f6f970d985f41cf7065e0ec35fc047d4 (patch) | |
tree | af4c32b058df42c7e097088a15e19c73b6c045e5 /sci-misc | |
parent | More cleaning (diff) | |
download | gentoo-2-d6e0add5f6f970d985f41cf7065e0ec35fc047d4.tar.gz gentoo-2-d6e0add5f6f970d985f41cf7065e0ec35fc047d4.tar.bz2 gentoo-2-d6e0add5f6f970d985f41cf7065e0ec35fc047d4.zip |
Version bump
(Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/nco/ChangeLog | 10 | ||||
-rw-r--r-- | sci-misc/nco/nco-4.4.2.ebuild (renamed from sci-misc/nco/nco-4.2.3.ebuild) | 39 |
2 files changed, 27 insertions, 22 deletions
diff --git a/sci-misc/nco/ChangeLog b/sci-misc/nco/ChangeLog index bff76c973584..030dbd0a4731 100644 --- a/sci-misc/nco/ChangeLog +++ b/sci-misc/nco/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-misc/nco -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.21 2013/05/27 17:28:55 bicatali Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/ChangeLog,v 1.22 2014/02/27 18:58:17 bicatali Exp $ + +*nco-4.4.2 (27 Feb 2014) + + 27 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> +nco-4.4.2.ebuild, + -nco-4.2.3.ebuild: + Version bump *nco-4.3.1 (27 May 2013) diff --git a/sci-misc/nco/nco-4.2.3.ebuild b/sci-misc/nco/nco-4.4.2.ebuild index 85a7c2ba8c1a..fa028d731c0c 100644 --- a/sci-misc/nco/nco-4.2.3.ebuild +++ b/sci-misc/nco/nco-4.4.2.ebuild @@ -1,23 +1,24 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/nco-4.2.3.ebuild,v 1.1 2012/11/27 22:51:10 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/nco-4.4.2.ebuild,v 1.1 2014/02/27 18:58:17 bicatali Exp $ -EAPI=4 -inherit eutils flag-o-matic +EAPI=5 + +inherit autotools-utils eutils flag-o-matic DESCRIPTION="Command line utilities for operating on netCDF files" HOMEPAGE="http://nco.sourceforge.net/" SRC_URI="http://nco.sf.net/src/${P}.tar.gz" LICENSE="GPL-3" -SLOT="0" +SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" IUSE="dap doc gsl ncap2 static-libs test udunits" RDEPEND=" - >=sci-libs/netcdf-4[dap=] - gsl? ( sci-libs/gsl ) + >=sci-libs/netcdf-4:=[dap=] + gsl? ( sci-libs/gsl:= ) udunits? ( >=sci-libs/udunits-2 )" DEPEND="${RDEPEND} @@ -25,27 +26,25 @@ DEPEND="${RDEPEND} test? ( >=sci-libs/netcdf-4[tools] )" src_configure() { - local myconf + local myeconfargs=( + --disable-udunits + $(use_enable dap dap-netcdf) + $(use_enable gsl) + $(use_enable ncap2) + $(use_enable udunits udunits2) + ) if has_version '>=sci-libs/netcdf-4[hdf5]'; then - myconf="--enable-netcdf4" + myeconfargs+=( --enable-netcdf4 ) append-cppflags -DHAVE_NETCDF4_H else - myconf="--disable-netcdf4" + myconfargs+=( --disable-netcdf4 ) fi - econf \ - --disable-udunits \ - $(use_enable dap dap-netcdf) \ - $(use_enable gsl) \ - $(use_enable ncap2) \ - $(use_enable static-libs static) \ - $(use_enable udunits udunits2) \ - ${myconf} + autotools-utils_src_configure } src_install() { - default + autotools-utils_src_install cd doc - dodoc ANNOUNCE ChangeLog MANIFEST NEWS README TAG TODO VERSION *.txt doinfo *.info* use doc && dohtml nco.html && dodoc nco.pdf } |