diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-05-12 09:14:12 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-05-12 09:14:12 +0000 |
commit | 9fc9c86b2b3322f7c143408fc59ae8f75db47ceb (patch) | |
tree | b218213a1977872d355d047ae7934a4de221da7b /dev-ml/ocaml-ssl | |
parent | Fix typo in HOMEPAGE (diff) | |
download | gentoo-2-9fc9c86b2b3322f7c143408fc59ae8f75db47ceb.tar.gz gentoo-2-9fc9c86b2b3322f7c143408fc59ae8f75db47ceb.tar.bz2 gentoo-2-9fc9c86b2b3322f7c143408fc59ae8f75db47ceb.zip |
Version bump
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-ml/ocaml-ssl')
-rw-r--r-- | dev-ml/ocaml-ssl/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/ocaml-ssl/files/digest-ocaml-ssl-0.4.2 | 3 | ||||
-rw-r--r-- | dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild | 34 |
3 files changed, 43 insertions, 1 deletions
diff --git a/dev-ml/ocaml-ssl/ChangeLog b/dev-ml/ocaml-ssl/ChangeLog index f17ef0f3510e..eddb61ecf959 100644 --- a/dev-ml/ocaml-ssl/ChangeLog +++ b/dev-ml/ocaml-ssl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/ocaml-ssl # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ssl/ChangeLog,v 1.5 2007/05/12 09:11:06 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ssl/ChangeLog,v 1.6 2007/05/12 09:14:12 aballier Exp $ + +*ocaml-ssl-0.4.2 (12 May 2007) + + 12 May 2007; Alexis Ballier <aballier@gentoo.org> +ocaml-ssl-0.4.2.ebuild: + Version bump 12 May 2007; Alexis Ballier <aballier@gentoo.org> ocaml-ssl-0.4.1.ebuild: Fix typo in HOMEPAGE diff --git a/dev-ml/ocaml-ssl/files/digest-ocaml-ssl-0.4.2 b/dev-ml/ocaml-ssl/files/digest-ocaml-ssl-0.4.2 new file mode 100644 index 000000000000..b0e05d970682 --- /dev/null +++ b/dev-ml/ocaml-ssl/files/digest-ocaml-ssl-0.4.2 @@ -0,0 +1,3 @@ +MD5 b6ee4283472ad2b5010aff3038567701 ocaml-ssl-0.4.2.tar.gz 109090 +RMD160 ba5b4106d19e0b3d50e9a19d705ef18a5b20948c ocaml-ssl-0.4.2.tar.gz 109090 +SHA256 b0f1bd1b0d69f84aa6df14d700f7da907da08c6efa789077db17ec33f6181040 ocaml-ssl-0.4.2.tar.gz 109090 diff --git a/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild b/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild new file mode 100644 index 000000000000..cc80fc6f5662 --- /dev/null +++ b/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild,v 1.1 2007/05/12 09:14:12 aballier Exp $ + +inherit findlib eutils + +IUSE="doc" + +DESCRIPTION="OCaml bindings for OpenSSL." +SRC_URI="mirror://sourceforge/savonet/${P}.tar.gz" +HOMEPAGE="http://savonet.sourceforge.net/wiki/OCamlLibs" + +DEPEND="dev-libs/openssl" + +RDEPEND="$DEPEND" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~ppc ~x86" + +src_compile() { + econf || die "configure failed" + emake || die "make failed" +} + +src_install() { + findlib_src_preinst + emake install || die + + if use doc; then + dohtml -r doc/html/* + fi + dodoc CHANGES README +} |