version bump
authorAlexis Ballier <aballier@gentoo.org>
Thu, 6 Oct 2011 20:03:02 +0000 (20:03 +0000)
committerAlexis Ballier <aballier@gentoo.org>
Thu, 6 Oct 2011 20:03:02 +0000 (20:03 +0000)
Package-Manager: portage-2.2.0_alpha62/cvs/Linux x86_64

dev-ml/sexplib/ChangeLog
dev-ml/sexplib/sexplib-7.0.4.ebuild [new file with mode: 0644]
dev-ml/type-conv/ChangeLog
dev-ml/type-conv/type-conv-3.0.4.ebuild [new file with mode: 0644]

index 67cd36d309a29b42038e481f10ffa8ad626aef9f..1323048fb4ceeae6aa153e0d7cbe585ad2d245bc 100644 (file)
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/sexplib
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.11 2011/09/07 15:22:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.12 2011/10/06 20:03:02 aballier Exp $
+
+*sexplib-7.0.4 (06 Oct 2011)
+
+  06 Oct 2011; Alexis Ballier <aballier@gentoo.org> +sexplib-7.0.4.ebuild:
+  version bump
 
 *sexplib-7.0.3 (07 Sep 2011)
 
diff --git a/dev-ml/sexplib/sexplib-7.0.4.ebuild b/dev-ml/sexplib/sexplib-7.0.4.ebuild
new file mode 100644 (file)
index 0000000..db948e7
--- /dev/null
@@ -0,0 +1,52 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-7.0.4.ebuild,v 1.1 2011/10/06 20:03:02 aballier Exp $
+
+EAPI=3
+
+inherit findlib eutils multilib
+
+DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
+HOMEPAGE="http://forge.ocamlcore.org/projects/sexplib/"
+SRC_URI="http://forge.ocamlcore.org/frs/download.php/699/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc +ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-3.12[ocamlopt?]
+       >=dev-ml/type-conv-3.0.4"
+DEPEND="${RDEPEND}
+       doc? ( virtual/latex-base dev-texlive/texlive-latexextra )"
+
+oasis_use_enable() {
+       echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
+}
+
+src_configure() {
+       ./configure --prefix usr \
+               --libdir /usr/$(get_libdir) \
+               --destdir "${D}" \
+               $(oasis_use_enable debug debug) \
+               $(oasis_use_enable ocamlopt is_native) \
+               || die
+}
+
+src_compile() {
+       emake || die
+       if use doc ; then
+               cd "${S}/doc"
+               pdflatex README || die
+               pdflatex README || die
+       fi
+}
+
+src_install() {
+       findlib_src_install
+
+       dodoc README.txt Changelog || die
+       if use doc; then
+               dodoc doc/README.pdf || die
+       fi
+}
index e0f1095c536df102e2aea3ae01b66ebd7e4ed030..fdf56bf2553120a681cc1a42a4fe43c89a591b42 100644 (file)
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/type-conv
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/type-conv/ChangeLog,v 1.12 2011/07/23 15:43:07 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/type-conv/ChangeLog,v 1.13 2011/10/06 20:00:53 aballier Exp $
+
+*type-conv-3.0.4 (06 Oct 2011)
+
+  06 Oct 2011; Alexis Ballier <aballier@gentoo.org> +type-conv-3.0.4.ebuild:
+  version bump
 
   23 Jul 2011; Thomas Kahle <tomka@gentoo.org> type-conv-2.3.0.ebuild:
   ~x86 per bug 373149
diff --git a/dev-ml/type-conv/type-conv-3.0.4.ebuild b/dev-ml/type-conv/type-conv-3.0.4.ebuild
new file mode 100644 (file)
index 0000000..9186fde
--- /dev/null
@@ -0,0 +1,43 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/type-conv/type-conv-3.0.4.ebuild,v 1.1 2011/10/06 20:00:53 aballier Exp $
+
+EAPI="2"
+
+inherit findlib eutils multilib
+
+DESCRIPTION="Mini library required for some other preprocessing libraries"
+HOMEPAGE="http://forge.ocamlcore.org/projects/type-conv/"
+SRC_URI="http://forge.ocamlcore.org/frs/download.php/697/${P}.tar.gz"
+
+LICENSE="LGPL-2.1-linking-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc +ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-3.12[ocamlopt?]"
+
+DEPEND="${RDEPEND}"
+
+oasis_use_enable() {
+       echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
+}
+
+src_configure() {
+       ./configure --prefix usr \
+               --libdir /usr/$(get_libdir) \
+               --destdir "${D}" \
+               $(oasis_use_enable debug debug) \
+               $(oasis_use_enable ocamlopt is_native) \
+               || die
+}
+
+src_test() {
+       LD_LIBRARY_PATH="${S}/_build/lib" emake test || die
+}
+
+src_install() {
+       findlib_src_install
+
+       dodoc README.txt Changelog || die
+}