diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-10-03 12:40:49 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-10-03 12:40:49 +0000 |
commit | 93197930517dcc7b115cf6238432f3d359ebb636 (patch) | |
tree | 7c1abffc53998cffc22663920c87b16979896b0c /dev-libs/libuv | |
parent | version bump (diff) | |
download | gentoo-2-93197930517dcc7b115cf6238432f3d359ebb636.tar.gz gentoo-2-93197930517dcc7b115cf6238432f3d359ebb636.tar.bz2 gentoo-2-93197930517dcc7b115cf6238432f3d359ebb636.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.13.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-libs/libuv/ChangeLog b/dev-libs/libuv/ChangeLog index 699a42e7ea95..f06547b0079b 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.7 2013/09/03 22:57:24 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.8 2013/10/03 12:40:49 hasufell Exp $ + +*libuv-0.11.13 (03 Oct 2013) + + 03 Oct 2013; Julian Ospald <hasufell@gentoo.org> +libuv-0.11.13.ebuild: + version bump *libuv-0.11.12 (03 Sep 2013) diff --git a/dev-libs/libuv/libuv-0.11.13.ebuild b/dev-libs/libuv/libuv-0.11.13.ebuild new file mode 100644 index 000000000000..3a0b56754799 --- /dev/null +++ b/dev-libs/libuv/libuv-0.11.13.ebuild @@ -0,0 +1,33 @@ +# 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.13.ebuild,v 1.1 2013/10/03 12:40:49 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" + +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 +} |