diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-12-14 12:15:29 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-12-14 12:15:29 +0000 |
commit | 2531c496f17f8e1f2f67bccc8ba09b661b2682e2 (patch) | |
tree | ff3eef883982dbf1e606a1d087a12eacee54c9f6 /dev-libs/libuv | |
parent | version bump (diff) | |
download | gentoo-2-2531c496f17f8e1f2f67bccc8ba09b661b2682e2.tar.gz gentoo-2-2531c496f17f8e1f2f67bccc8ba09b661b2682e2.tar.bz2 gentoo-2-2531c496f17f8e1f2f67bccc8ba09b661b2682e2.zip |
version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'dev-libs/libuv')
-rw-r--r-- | dev-libs/libuv/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libuv/libuv-0.11.16.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-libs/libuv/ChangeLog b/dev-libs/libuv/ChangeLog index f06547b0079b..4fa38c9cb33e 100644 --- a/dev-libs/libuv/ChangeLog +++ b/dev-libs/libuv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libuv # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.8 2013/10/03 12:40:49 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.9 2013/12/14 12:15:29 hasufell Exp $ + +*libuv-0.11.16 (14 Dec 2013) + + 14 Dec 2013; Julian Ospald <hasufell@gentoo.org> +libuv-0.11.16.ebuild: + version bump *libuv-0.11.13 (03 Oct 2013) diff --git a/dev-libs/libuv/libuv-0.11.16.ebuild b/dev-libs/libuv/libuv-0.11.16.ebuild new file mode 100644 index 000000000000..12b239dc1209 --- /dev/null +++ b/dev-libs/libuv/libuv-0.11.16.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-0.11.16.ebuild,v 1.1 2013/12/14 12:15:29 hasufell 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 ~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 +} |