summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-06-12 12:46:40 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-06-12 12:46:40 +0000
commite57f39976c90b59bf1feee806db8a4de7ee65b99 (patch)
tree8c8bc0cdc104a9f0d5c2f9da65b196beaeb9076a /dev-ml/cryptokit
parentversion bump (diff)
downloadhistorical-e57f39976c90b59bf1feee806db8a4de7ee65b99.tar.gz
historical-e57f39976c90b59bf1feee806db8a4de7ee65b99.tar.bz2
historical-e57f39976c90b59bf1feee806db8a4de7ee65b99.zip
remove old
Package-Manager: portage-2.2.0_alpha110/cvs/Linux x86_64
Diffstat (limited to 'dev-ml/cryptokit')
-rw-r--r--dev-ml/cryptokit/ChangeLog5
-rw-r--r--dev-ml/cryptokit/cryptokit-1.4.ebuild66
2 files changed, 4 insertions, 67 deletions
diff --git a/dev-ml/cryptokit/ChangeLog b/dev-ml/cryptokit/ChangeLog
index 090ab82729a9..8ffbb8ba7a2f 100644
--- a/dev-ml/cryptokit/ChangeLog
+++ b/dev-ml/cryptokit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/cryptokit
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.12 2012/06/08 12:10:58 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.13 2012/06/12 12:45:08 aballier Exp $
+
+ 12 Jun 2012; Alexis Ballier <aballier@gentoo.org> -cryptokit-1.4.ebuild:
+ remove old
08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> cryptokit-1.5.ebuild:
x86 stable wrt bug #418777
diff --git a/dev-ml/cryptokit/cryptokit-1.4.ebuild b/dev-ml/cryptokit/cryptokit-1.4.ebuild
deleted file mode 100644
index 809912a7da52..000000000000
--- a/dev-ml/cryptokit/cryptokit-1.4.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/cryptokit-1.4.ebuild,v 1.4 2012/03/15 18:21:08 phajdan.jr Exp $
-
-EAPI="2"
-
-inherit findlib multilib
-
-DESCRIPTION="Cryptographic primitives library for Objective Caml"
-HOMEPAGE="http://forge.ocamlcore.org/projects/cryptokit/"
-SRC_URI="https://forge.ocamlcore.org/frs/download.php/460/${P}.tar.gz"
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
-IUSE="debug doc +ocamlopt zlib"
-
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
- zlib? ( >=sys-libs/zlib-1.1 )"
-RDEPEND="${DEPEND}"
-
-oasis_use_enable() {
- echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
-}
-
-src_configure() {
- ./configure --prefix usr \
- --libdir /usr/$(get_libdir) \
- --destdir "${D}" \
- $(use_enable zlib) \
- $(oasis_use_enable debug debug) \
- $(oasis_use_enable ocamlopt is_native) \
- || die
-}
-
-src_compile() {
- emake || die
- if use doc ; then
- emake doc || die
- fi
-}
-
-src_install() {
- findlib_src_install
- dodoc Changes README* AUTHORS* || die
-}
-
-pkg_postinst() {
- elog ""
- elog "This library uses the /dev/random device to generate "
- elog "random data and RSA keys. The device should either be"
- elog "built into the kernel or provided as a module. An"
- elog "alternative is to use the Entropy Gathering Daemon"
- elog "(http://egd.sourceforge.net). Please note that the"
- elog "remainder of the library will still work even in the"
- elog "absence of a one of these sources of randomness."
- elog ""
-}
-
-src_test() {
- echo ""
- einfo "You must have either /dev/random or the Entropy Gathering"
- einfo "Daemon (EGD) for this test to succeed!"
- echo ""
-
- emake test || die "emake test failed"
-}