diff options
author | 2015-03-05 05:28:48 +0000 | |
---|---|---|
committer | 2015-03-05 05:28:48 +0000 | |
commit | 023b27104131816a337cb2a8741a7527a7144d08 (patch) | |
tree | 26543cb97d5fe57a19b4280a621196f61cd0a097 /dev-libs/libuv/libuv-1.1.0.ebuild | |
parent | Big cleanup: Include some patches and a manpage from Debian, re-work the code... (diff) | |
download | gentoo-2-023b27104131816a337cb2a8741a7527a7144d08.tar.gz gentoo-2-023b27104131816a337cb2a8741a7527a7144d08.tar.bz2 gentoo-2-023b27104131816a337cb2a8741a7527a7144d08.zip |
Restore version needed by nodejs
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-libs/libuv/libuv-1.1.0.ebuild')
-rw-r--r-- | dev-libs/libuv/libuv-1.1.0.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-libs/libuv/libuv-1.1.0.ebuild b/dev-libs/libuv/libuv-1.1.0.ebuild new file mode 100644 index 000000000000..f8b138a84584 --- /dev/null +++ b/dev-libs/libuv/libuv-1.1.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-1.1.0.ebuild,v 1.3 2015/03/05 05:28:48 patrick Exp $ + +EAPI=5 + +inherit eutils autotools multilib-minimal + +DESCRIPTION="A new platform layer for Node" +HOMEPAGE="https://github.com/joyent/libuv" +SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD BSD-2 ISC MIT" +SLOT="0/1" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DEPEND="virtual/pkgconfig" + +src_prepare() { + echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \ + > m4/libuv-extra-automake-flags.m4 || die + + sed -i \ + -e '/libuv_la_CFLAGS/s#-g##' \ + Makefile.am || die "fixing CFLAGS failed!" + + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable static-libs static) +} + +multilib_src_test() { + mkdir "${BUILD_DIR}"/test || die + cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die + default +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +} |