diff options
author | Yixun Lan <dlan@gentoo.org> | 2014-09-09 07:48:06 +0000 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2014-09-09 07:48:06 +0000 |
commit | 49e07907055424c658ac5a96f09459c906a96fc4 (patch) | |
tree | faf1cbfe796e845502fc414d4b2a5244ba62db65 /dev-libs/libev | |
parent | Version bump to 1.5.2. As requested by ocaleta over mail. (diff) | |
download | gentoo-2-49e07907055424c658ac5a96f09459c906a96fc4.tar.gz gentoo-2-49e07907055424c658ac5a96f09459c906a96fc4.tar.bz2 gentoo-2-49e07907055424c658ac5a96f09459c906a96fc4.zip |
version bump
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Diffstat (limited to 'dev-libs/libev')
-rw-r--r-- | dev-libs/libev/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libev/libev-4.18.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-libs/libev/ChangeLog b/dev-libs/libev/ChangeLog index 7d9b6836ca67..2b5e727cbcdf 100644 --- a/dev-libs/libev/ChangeLog +++ b/dev-libs/libev/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libev # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.72 2014/08/23 15:28:24 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.73 2014/09/09 07:48:06 dlan Exp $ + +*libev-4.18 (09 Sep 2014) + + 09 Sep 2014; Yixun Lan <dlan@gentoo.org> +libev-4.18.ebuild: + version bump 23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> libev-4.15-r1.ebuild: Stable for ia64, wrt bug #512012 diff --git a/dev-libs/libev/libev-4.18.ebuild b/dev-libs/libev/libev-4.18.ebuild new file mode 100644 index 000000000000..098a0414d021 --- /dev/null +++ b/dev-libs/libev/libev-4.18.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-4.18.ebuild,v 1.1 2014/09/09 07:48:06 dlan Exp $ + +EAPI=5 + +inherit autotools eutils multilib-minimal + +DESCRIPTION="A high-performance event loop/event model with lots of feature" +HOMEPAGE="http://software.schmorp.de/pkg/libev.html" +SRC_URI="http://dist.schmorp.de/libev/${P}.tar.gz + http://dist.schmorp.de/libev/Attic/${P}.tar.gz" + +LICENSE="|| ( BSD GPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="elibc_glibc static-libs" + +# Bug #283558 +DEPEND="elibc_glibc? ( >=sys-libs/glibc-2.9_p20081201 )" +RDEPEND="${DEPEND}" + +DOCS=( Changes README ) + +src_prepare() { + sed -i -e "/^include_HEADERS/s/ event.h//" Makefile.am || die + + # bug #493050 + sed -i -e "/^AM_INIT_AUTOMAKE/a\ " configure.ac || die + + # bug #411847 + epatch "${FILESDIR}/${PN}-pc.patch" + + epatch_user + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + econf \ + --disable-maintainer-mode \ + $(use_enable static-libs static) +} + +multilib_src_install_all() { + use static-libs || prune_libtool_files + einstalldocs +} |