diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2009-08-19 16:38:41 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2009-08-19 16:38:41 +0000 |
commit | fc8e16e00480e765b9be0ab0c901bbdf31eb8903 (patch) | |
tree | 4c5efa134a742333b264b2b49b278a0244ecf4bc /dev-libs/libev | |
parent | Reorder any-of-many dependency for eselect, bug 271447. (diff) | |
download | gentoo-2-fc8e16e00480e765b9be0ab0c901bbdf31eb8903.tar.gz gentoo-2-fc8e16e00480e765b9be0ab0c901bbdf31eb8903.tar.bz2 gentoo-2-fc8e16e00480e765b9be0ab0c901bbdf31eb8903.zip |
Version bumped.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libev')
-rw-r--r-- | dev-libs/libev/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libev/libev-3.80.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-libs/libev/ChangeLog b/dev-libs/libev/ChangeLog index 368be9d851e6..212f969a2e69 100644 --- a/dev-libs/libev/ChangeLog +++ b/dev-libs/libev/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libev # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.15 2009/07/22 22:12:29 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.16 2009/08/19 16:38:41 matsuu Exp $ + +*libev-3.80 (19 Aug 2009) + + 19 Aug 2009; MATSUU Takuto <matsuu@gentoo.org> +libev-3.80.ebuild: + Version bumped. *libev-3.70 (22 Jul 2009) diff --git a/dev-libs/libev/libev-3.80.ebuild b/dev-libs/libev/libev-3.80.ebuild new file mode 100644 index 000000000000..02867da7ba26 --- /dev/null +++ b/dev-libs/libev/libev-3.80.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-3.80.ebuild,v 1.1 2009/08/19 16:38:41 matsuu Exp $ + +inherit autotools eutils + +MY_P="${P/0}" +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/${MY_P}.tar.gz + http://dist.schmorp.de/libev/Attic/${MY_P}.tar.gz" + +LICENSE="|| ( BSD GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-3.42-gentoo.patch" + + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc Changes README +} |