diff options
author | Ben de Groot <yngwin@gentoo.org> | 2014-02-27 21:23:47 +0800 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2014-02-27 21:23:47 +0800 |
commit | e542305b6158c2ab7e6daa9f6e1fc38eadc15f1f (patch) | |
tree | 6b557a875229a04edce6ff8ad971055097436690 /dev-libs | |
parent | sync with gx86 (diff) | |
download | yngwin-e542305b6158c2ab7e6daa9f6e1fc38eadc15f1f.tar.gz yngwin-e542305b6158c2ab7e6daa9f6e1fc38eadc15f1f.tar.bz2 yngwin-e542305b6158c2ab7e6daa9f6e1fc38eadc15f1f.zip |
dev-libs/libuv version bump
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libuv/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libuv/libuv-0.11.21.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/libuv/Manifest b/dev-libs/libuv/Manifest new file mode 100644 index 0000000..cbe23a7 --- /dev/null +++ b/dev-libs/libuv/Manifest @@ -0,0 +1 @@ +DIST libuv-0.11.21.tar.gz 380948 SHA256 f8da8e8c76b39550dbc4c5ea6cb99bfe961445079e67b6f5fb8c909fd4a026f9 SHA512 511bec3d69f22c506034705cc97936abda7bfa847ecd367a5063edec917b52c65712249c2a9eccf5ebbbb4b0c1e9c0139c451b27f9b69c2a8c45436e77e3f250 WHIRLPOOL 264597939f38407bc9e4b63c5193891556085b73cc7850eb3a4c8190d8d39750105e1e649978d3860e18b8d27e2738bed807517b9d98d75b22b56f752eec1979 diff --git a/dev-libs/libuv/libuv-0.11.21.ebuild b/dev-libs/libuv/libuv-0.11.21.ebuild new file mode 100644 index 0000000..2c130c4 --- /dev/null +++ b/dev-libs/libuv/libuv-0.11.21.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-0.11.18.ebuild,v 1.2 2014/02/16 21:17:10 maekke Exp $ + +EAPI=5 +inherit eutils autotools + +DESCRIPTION="A new platform layer for Node" +HOMEPAGE="https://github.com/joyent/libuv" +SRC_URI="https://github.com/joyent/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD BSD-2 ISC MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="static-libs" + +DEPEND="virtual/pkgconfig" + +src_prepare() { + echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \ + > m4/libuv-extra-automake-flags.m4 || die + + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + prune_libtool_files +} |