summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2007-08-31 07:31:28 +0000
committerAlexis Ballier <aballier@gentoo.org>2007-08-31 07:31:28 +0000
commit53878d1b39d058a7894dd795af16baabc5606922 (patch)
tree5383c7a2f78ff7edb01136b26fe2117f01dc7000 /dev-ml
parentInitial import, thanks to Pierre Clairambault for the ebuild (diff)
downloadgentoo-2-53878d1b39d058a7894dd795af16baabc5606922.tar.gz
gentoo-2-53878d1b39d058a7894dd795af16baabc5606922.tar.bz2
gentoo-2-53878d1b39d058a7894dd795af16baabc5606922.zip
cleanup unused version
(Portage version: 2.1.3.7)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/ocurl/ChangeLog6
-rw-r--r--dev-ml/ocurl/files/0.1.6-curl-helper.patch18
-rw-r--r--dev-ml/ocurl/files/digest-ocurl-0.1.63
-rw-r--r--dev-ml/ocurl/ocurl-0.1.6.ebuild32
4 files changed, 5 insertions, 54 deletions
diff --git a/dev-ml/ocurl/ChangeLog b/dev-ml/ocurl/ChangeLog
index c7024e01e611..e8472121c54a 100644
--- a/dev-ml/ocurl/ChangeLog
+++ b/dev-ml/ocurl/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/ocurl
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v 1.5 2007/08/12 22:14:44 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v 1.6 2007/08/31 07:31:28 aballier Exp $
+
+ 31 Aug 2007; Alexis Ballier <aballier@gentoo.org>
+ -files/0.1.6-curl-helper.patch, -ocurl-0.1.6.ebuild:
+ cleanup unused version
12 Aug 2007; Christian Faulhammer <opfer@gentoo.org> ocurl-0.2.1.ebuild:
stable x86, bug 187731
diff --git a/dev-ml/ocurl/files/0.1.6-curl-helper.patch b/dev-ml/ocurl/files/0.1.6-curl-helper.patch
deleted file mode 100644
index a007ce325bbf..000000000000
--- a/dev-ml/ocurl/files/0.1.6-curl-helper.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- curl-helper.c~ 2003-12-03 19:48:31.000000000 +0100
-+++ curl-helper.c 2004-05-04 21:23:07.917507520 +0200
-@@ -2249,13 +2249,13 @@
- case 0: /* TIMECOND_IFMODSINCE */
- result = curl_easy_setopt(conn->connection,
- CURLOPT_TIMECONDITION,
-- TIMECOND_IFMODSINCE);
-+ CURL_TIMECOND_IFMODSINCE);
- break;
-
- case 1: /* TIMECOND_IFUNMODSINCE */
- result = curl_easy_setopt(conn->connection,
- CURLOPT_TIMECONDITION,
-- TIMECOND_IFUNMODSINCE);
-+ CURL_TIMECOND_IFUNMODSINCE);
- break;
-
- default:
diff --git a/dev-ml/ocurl/files/digest-ocurl-0.1.6 b/dev-ml/ocurl/files/digest-ocurl-0.1.6
deleted file mode 100644
index 541eba93eb67..000000000000
--- a/dev-ml/ocurl/files/digest-ocurl-0.1.6
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 d48751541e9b54fccb7bc21589b26907 ocurl-0.1.6.tgz 50082
-RMD160 ac126576afa06a480aa66d84d701da726d002e47 ocurl-0.1.6.tgz 50082
-SHA256 778f06a9fbe0b912c06df14a1f8254b0be8597a25f776e064f6c3bcbb80dd60c ocurl-0.1.6.tgz 50082
diff --git a/dev-ml/ocurl/ocurl-0.1.6.ebuild b/dev-ml/ocurl/ocurl-0.1.6.ebuild
deleted file mode 100644
index 6f8d57c0d4e3..000000000000
--- a/dev-ml/ocurl/ocurl-0.1.6.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ocurl-0.1.6.ebuild,v 1.1 2005/03/08 23:49:23 mattam Exp $
-
-inherit eutils findlib
-
-DESCRIPTION="OCaml interface to the libcurl library"
-HOMEPAGE="http://sourceforge.net/projects/ocurl"
-LICENSE="MIT"
-SRC_URI="mirror://sourceforge/ocurl/${P}.tgz"
-
-SLOT="0"
-IUSE="doc"
-
-DEPEND=">=net-misc/curl-7.9.8
-dev-libs/openssl"
-RDEPEND="$DEPEND"
-KEYWORDS="x86 ppc"
-
-src_compile()
-{
- epatch ${FILESDIR}/${PV}-curl-helper.patch
- econf --with-findlib || die
- make all || die
-}
-
-src_install()
-{
- findlib_src_install
- dodoc COPYING
- use doc && dodoc examples/*.ml
-}