diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-07 04:06:22 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-07 04:06:22 +0000 |
commit | b2efd2bd2c0c20633a890ec199f203d6ef69acb6 (patch) | |
tree | 4b03c5260f8a76f929b41465e5a530e976c565da /sci-libs | |
parent | Version bump (diff) | |
download | gentoo-2-b2efd2bd2c0c20633a890ec199f203d6ef69acb6.tar.gz gentoo-2-b2efd2bd2c0c20633a890ec199f203d6ef69acb6.tar.bz2 gentoo-2-b2efd2bd2c0c20633a890ec199f203d6ef69acb6.zip |
Version bump
(Portage version: 2.1.10.10/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/io_lib/ChangeLog | 10 | ||||
-rw-r--r-- | sci-libs/io_lib/io_lib-1.12.5.ebuild (renamed from sci-libs/io_lib/io_lib-1.12.1.ebuild) | 19 |
2 files changed, 20 insertions, 9 deletions
diff --git a/sci-libs/io_lib/ChangeLog b/sci-libs/io_lib/ChangeLog index cbc3f5a81d24..ae0dcd63de8a 100644 --- a/sci-libs/io_lib/ChangeLog +++ b/sci-libs/io_lib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/io_lib -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/io_lib/ChangeLog,v 1.19 2010/05/28 22:50:17 jlec Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/io_lib/ChangeLog,v 1.20 2011/08/07 04:06:22 bicatali Exp $ + +*io_lib-1.12.5 (07 Aug 2011) + + 07 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> -io_lib-1.12.1.ebuild, + +io_lib-1.12.5.ebuild: + Version bump *io_lib-1.12.2 (28 May 2010) diff --git a/sci-libs/io_lib/io_lib-1.12.1.ebuild b/sci-libs/io_lib/io_lib-1.12.5.ebuild index feca51b41d96..e8b4d546c40b 100644 --- a/sci-libs/io_lib/io_lib-1.12.1.ebuild +++ b/sci-libs/io_lib/io_lib-1.12.5.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/io_lib/io_lib-1.12.1.ebuild,v 1.1 2009/11/24 23:58:53 weaver Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/io_lib/io_lib-1.12.5.ebuild,v 1.1 2011/08/07 04:06:22 bicatali Exp $ -EAPI="2" +EAPI=4 DESCRIPTION="A general purpose trace and experiment file reading/writing interface" HOMEPAGE="http://staden.sourceforge.net/" @@ -11,15 +11,20 @@ SRC_URI="mirror://sourceforge/staden/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" +IUSE="static-libs" # Prototype changes in io_lib-1.9.0 create incompatibilities with BioPerl. (Only # versions 1.8.11 and 1.8.12 will work with the BioPerl Staden extensions.) #DEPEND="!sci-biology/bioperl" -DEPEND="" +DEPEND="net-misc/curl + sys-libs/zlib" RDEPEND="${DEPEND}" +src_configure() { + econf $(use_enable static-libs static) +} + src_install() { - einstall || die - dodoc ChangeLog CHANGES README docs/{Hash_File_Format,ZTR_format} || die + default + dodoc docs/{Hash_File_Format,ZTR_format} } |