diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-12-08 00:07:11 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-12-08 00:07:11 +0000 |
commit | 671c529e36e73f0be4a7b0342e4cca10e1c3b51b (patch) | |
tree | b19b153c844f929f2d17d8163d50682de556c03b /dev-ml | |
parent | Version bumbed. maintainership takeover. (diff) | |
download | gentoo-2-671c529e36e73f0be4a7b0342e4cca10e1c3b51b.tar.gz gentoo-2-671c529e36e73f0be4a7b0342e4cca10e1c3b51b.tar.bz2 gentoo-2-671c529e36e73f0be4a7b0342e4cca10e1c3b51b.zip |
version bump, thanks to Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> for reporting, bug #201634
(Portage version: 2.1.4_rc8)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/ocaml-sqlite3/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ml/ocaml-sqlite3/files/digest-ocaml-sqlite3-0.23.0 | 3 | ||||
-rw-r--r-- | dev-ml/ocaml-sqlite3/ocaml-sqlite3-0.23.0.ebuild | 43 |
3 files changed, 54 insertions, 1 deletions
diff --git a/dev-ml/ocaml-sqlite3/ChangeLog b/dev-ml/ocaml-sqlite3/ChangeLog index 7b074fa13819..0e3e44aa81d0 100644 --- a/dev-ml/ocaml-sqlite3/ChangeLog +++ b/dev-ml/ocaml-sqlite3/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-ml/ocaml-sqlite3 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-sqlite3/ChangeLog,v 1.1 2007/08/31 07:23:45 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-sqlite3/ChangeLog,v 1.2 2007/12/08 00:07:11 aballier Exp $ + +*ocaml-sqlite3-0.23.0 (08 Dec 2007) + + 08 Dec 2007; Alexis Ballier <aballier@gentoo.org> + +ocaml-sqlite3-0.23.0.ebuild: + version bump, thanks to Arfrever Frehtes Taifersar Arahesis + <Arfrever.FTA@GMail.Com> for reporting, bug #201634 *ocaml-sqlite3-0.22.0 (31 Aug 2007) diff --git a/dev-ml/ocaml-sqlite3/files/digest-ocaml-sqlite3-0.23.0 b/dev-ml/ocaml-sqlite3/files/digest-ocaml-sqlite3-0.23.0 new file mode 100644 index 000000000000..5eb62dd8e868 --- /dev/null +++ b/dev-ml/ocaml-sqlite3/files/digest-ocaml-sqlite3-0.23.0 @@ -0,0 +1,3 @@ +MD5 473b2dea5684dc681c0e3e7ecb083cee ocaml-sqlite3-0.23.0.tar.bz2 46082 +RMD160 c0358b12f1e82ad30ba26c30aa7508ec6aa9316d ocaml-sqlite3-0.23.0.tar.bz2 46082 +SHA256 4faacc137bcc8c516d018bcf8495d44a62747a0facb85ac217aa00ac4e289d77 ocaml-sqlite3-0.23.0.tar.bz2 46082 diff --git a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-0.23.0.ebuild b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-0.23.0.ebuild new file mode 100644 index 000000000000..f3957044c867 --- /dev/null +++ b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-0.23.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-sqlite3/ocaml-sqlite3-0.23.0.ebuild,v 1.1 2007/12/08 00:07:11 aballier Exp $ + +inherit findlib eutils + +IUSE="doc" + +DESCRIPTION="A package for ocaml that provides access to SQLite databases." +SRC_URI="http://ocaml.info/ocaml_sources/${P}.tar.bz2" +HOMEPAGE="http://ocaml.info/home/ocaml_sources.html#ocaml-sqlite3" + +DEPEND=">=dev-lang/ocaml-3.09 + >=dev-db/sqlite-3.3.3" + +RDEPEND="${DEPEND}" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-0.22.0-destdir.patch" +} + +src_compile() { + econf + emake -j1 bytecode || die "make bytecode failed" + emake -j1 opt || die "make opt failed" + if use doc; then + emake -j1 docs || die "make doc failed" + fi +} + +src_install() { + findlib_src_preinst + export OCAMLPATH="${OCAMLFIND_DESTDIR}" + emake DESTDIR="${D}" install || die "make install failed" + dodoc CHANGES README TODO + use doc && dohtml doc/* +} |