Portage is a package management system used by Gentoo Linux
# 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.11 2007/12/19 13:15:04 aballier Exp $
19 Dec 2007; Alexis Ballier
parallel make happens to produce broken installs, disabling it for now
18 Sep 2007; Christoph Mende
Stable on amd64
24 Aug 2007; Tobias Scherbaum
ocaml-ssl-0.4.2.ebuild:
ppc stable, bug #189794
22 Aug 2007; Jurek Bartuszek
x86 stable (bug #189794)
22 Aug 2007; Alexis Ballier
remove unused version
*ocaml-ssl-0.4.2 (12 May 2007)
12 May 2007; Alexis Ballier
Version bump
12 May 2007; Alexis Ballier
Fix typo in HOMEPAGE
12 May 2007; Alexis Ballier
Cleanup old version
06 May 2007; Tobias Scherbaum
ocaml-ssl-0.4.1.ebuild:
Added ~ppc, bug #114277
*ocaml-ssl-0.4.1 (05 Mar 2007)
05 Mar 2007; Alexis Ballier
Version bump, ~amd64
*ocaml-ssl-0.4.0 (06 Feb 2007)
06 Feb 2007; Alexandre Buisse
+ocaml-ssl-0.4.0.ebuild:
Initial commit, ebuild courtesy of Oscar Hellström (bug #164449).
DIST ocaml-ssl-0.4.2.tar.gz 109090 RMD160 ba5b4106d19e0b3d50e9a19d705ef18a5b20948c SHA1 ec6362b681aa5498143ec0c4ddd77fbbe745a2aa SHA256 b0f1bd1b0d69f84aa6df14d700f7da907da08c6efa789077db17ec33f6181040
EBUILD ocaml-ssl-0.4.2.ebuild 746 RMD160 9d66fed94b4ab77829b51e781e2d8ca4e6cfde13 SHA1 531d192f3ad8bbfa2495a61864363d0c755a35a3 SHA256 b99201a972de88d3d0fbe13f601e459855d350514218c7ce0b82e75fa33010c5
MISC ChangeLog 1531 RMD160 8f15cde1ce5364e0c6b87afdce44bf2e967b499c SHA1 63a3214a7720de8a673d674c1ba5f51d7f417fea SHA256 50966efe2d8d3787a198c8054b56e93355302f281be02ccf95e1041bfa0de220
MISC metadata.xml 157 RMD160 30153301a2a5cca5547a6e47941aae2895837613 SHA1 66e87d50f913856e703f3ee29841b03332af40db SHA256 d14b8b08774f2a40f42d70ff40b1b4f1c4725e7095d702143a32909553eac799
# 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.5 2007/12/19 13:15:04 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 -j1 || die "make failed"
}
src_install() {
findlib_src_preinst
emake install || die "make install failed"
if use doc; then
dohtml -r doc/html/*
fi
dodoc CHANGES README
}