summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-06-06 15:33:35 +0000
committerMichał Górny <mgorny@gentoo.org>2012-06-06 15:33:35 +0000
commit861455fff7f7f0ea189458f52e4c51c0a66052d5 (patch)
tree1c8dc6841e2994cb77d6076ebe21d3223a01029a /sci-libs/libh2o
parentStable for HPPA (bug #412307). (diff)
downloadgentoo-2-861455fff7f7f0ea189458f52e4c51c0a66052d5.tar.gz
gentoo-2-861455fff7f7f0ea189458f52e4c51c0a66052d5.tar.bz2
gentoo-2-861455fff7f7f0ea189458f52e4c51c0a66052d5.zip
Version bump. The new version introduces equations for heat capacity & speed of sound.
(Portage version: 2.2.0_alpha109_p1/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/libh2o')
-rw-r--r--sci-libs/libh2o/ChangeLog8
-rw-r--r--sci-libs/libh2o/libh2o-0.2.ebuild24
2 files changed, 31 insertions, 1 deletions
diff --git a/sci-libs/libh2o/ChangeLog b/sci-libs/libh2o/ChangeLog
index 3ce54d7c8a4e..13b2cc449aac 100644
--- a/sci-libs/libh2o/ChangeLog
+++ b/sci-libs/libh2o/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-libs/libh2o
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libh2o/ChangeLog,v 1.2 2012/06/05 15:42:09 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libh2o/ChangeLog,v 1.3 2012/06/06 15:33:35 mgorny Exp $
+
+*libh2o-0.2 (06 Jun 2012)
+
+ 06 Jun 2012; Michał Górny <mgorny@gentoo.org> +libh2o-0.2.ebuild:
+ Version bump. The new version introduces equations for heat capacity & speed
+ of sound.
05 Jun 2012; Michał Górny <mgorny@gentoo.org> metadata.xml:
Update issue tracker URI.
diff --git a/sci-libs/libh2o/libh2o-0.2.ebuild b/sci-libs/libh2o/libh2o-0.2.ebuild
new file mode 100644
index 000000000000..622dec68f3dd
--- /dev/null
+++ b/sci-libs/libh2o/libh2o-0.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libh2o/libh2o-0.2.ebuild,v 1.1 2012/06/06 15:33:35 mgorny Exp $
+
+EAPI=4
+
+inherit autotools-utils
+
+DESCRIPTION="Library of routines for IF97 water & steam properties"
+HOMEPAGE="https://bitbucket.org/mgorny/libh2o/"
+SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug static-libs"
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ )
+
+ autotools-utils_src_configure
+}