diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2008-12-13 03:31:02 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2008-12-13 03:31:02 +0000 |
commit | 69eba469ec5c39596c7db893c635a6326e051fa5 (patch) | |
tree | c4a387cabe46a88ba98913c611c4a6e1d24fa894 | |
parent | Version bumped. (diff) | |
download | gentoo-2-69eba469ec5c39596c7db893c635a6326e051fa5.tar.gz gentoo-2-69eba469ec5c39596c7db893c635a6326e051fa5.tar.bz2 gentoo-2-69eba469ec5c39596c7db893c635a6326e051fa5.zip |
Version bumped.
(Portage version: 2.1.6/cvs/Linux 2.6.27-gentoo-r4 x86_64)
-rw-r--r-- | dev-libs/libev/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libev/libev-3.49.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/dev-libs/libev/ChangeLog b/dev-libs/libev/ChangeLog index 6baca78eec2e..309edddefed0 100644 --- a/dev-libs/libev/ChangeLog +++ b/dev-libs/libev/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libev # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.7 2008/11/13 11:41:16 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.8 2008/12/13 03:31:02 matsuu Exp $ + +*libev-3.49 (13 Dec 2008) + + 13 Dec 2008; MATSUU Takuto <matsuu@gentoo.org> +libev-3.49.ebuild: + Version bumped. *libev-3.48 (13 Nov 2008) diff --git a/dev-libs/libev/libev-3.49.ebuild b/dev-libs/libev/libev-3.49.ebuild new file mode 100644 index 000000000000..57d367ec562e --- /dev/null +++ b/dev-libs/libev/libev-3.49.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-3.49.ebuild,v 1.1 2008/12/13 03:31:02 matsuu Exp $ + +inherit autotools eutils + +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" + +LICENSE="|| ( BSD GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-3.42-gentoo.patch" + + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc Changes README +} |