diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-07-19 23:23:54 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-07-19 23:23:54 +0000 |
commit | b76dc3474864b1c12a31e82f7a7afbd9c8710eb5 (patch) | |
tree | dcafb8423d6c45a6748c00fd59a9d44579d1bd3a | |
parent | Fix building with glibc-2.16 #427254 by Oschtan. (diff) | |
download | gentoo-2-b76dc3474864b1c12a31e82f7a7afbd9c8710eb5.tar.gz gentoo-2-b76dc3474864b1c12a31e82f7a7afbd9c8710eb5.tar.bz2 gentoo-2-b76dc3474864b1c12a31e82f7a7afbd9c8710eb5.zip |
version bump, by Jacques-Pascal Deplaix, bug #427214
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
-rw-r--r-- | dev-ml/lwt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/lwt/lwt-2.4.0.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/dev-ml/lwt/ChangeLog b/dev-ml/lwt/ChangeLog index 416554a1c3f1..815a230a8b10 100644 --- a/dev-ml/lwt/ChangeLog +++ b/dev-ml/lwt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/lwt # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/lwt/ChangeLog,v 1.18 2012/07/09 20:55:40 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/lwt/ChangeLog,v 1.19 2012/07/19 23:23:54 aballier Exp $ + +*lwt-2.4.0 (19 Jul 2012) + + 19 Jul 2012; Alexis Ballier <aballier@gentoo.org> +lwt-2.4.0.ebuild: + version bump, by Jacques-Pascal Deplaix, bug #427214 09 Jul 2012; Ulrich Müller <ulm@gentoo.org> lwt-2.3.2.ebuild: Update LICENSE, bug 425140. diff --git a/dev-ml/lwt/lwt-2.4.0.ebuild b/dev-ml/lwt/lwt-2.4.0.ebuild new file mode 100644 index 000000000000..5164c29bf112 --- /dev/null +++ b/dev-ml/lwt/lwt-2.4.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/lwt/lwt-2.4.0.ebuild,v 1.1 2012/07/19 23:23:54 aballier Exp $ + +EAPI=4 + +OASIS_BUILD_TESTS=1 +OASIS_BUILD_DOCS=1 + +inherit oasis + +DESCRIPTION="Cooperative light-weight thread library for OCaml" +SRC_URI="http://ocsigen.org/download/${P}.tar.gz" +HOMEPAGE="http://ocsigen.org/lwt" + +IUSE="gtk +react +ssl" + +DEPEND="react? ( dev-ml/react ) + dev-libs/libev + ssl? ( >=dev-ml/ocaml-ssl-0.4.0 ) + gtk? ( dev-ml/lablgtk dev-libs/glib:2 )" + +RDEPEND="${DEPEND} + !<www-servers/ocsigen-1.1" + +SLOT="0" +LICENSE="LGPL-2.1-with-linking-exception" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" + +DOCS=( "CHANGES" "CHANGES.darcs" "README" ) + +src_configure() { + oasis_configure_opts="$(use_enable gtk glib) + $(use_enable react) + $(use_enable ssl)" \ + oasis_src_configure +} |