diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-04-17 13:39:08 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-04-17 13:39:08 +0000 |
commit | b78363643ae620817d4322198fc47adefca366b2 (patch) | |
tree | 63997751725b51ecb4512b41b04bcba37f3c40a2 /dev-ml/ocurl | |
parent | Make it compile with vdr-1.5 (diff) | |
download | gentoo-2-b78363643ae620817d4322198fc47adefca366b2.tar.gz gentoo-2-b78363643ae620817d4322198fc47adefca366b2.tar.bz2 gentoo-2-b78363643ae620817d4322198fc47adefca366b2.zip |
Version bump, ~amd64, fixes compilation against curl-7.16
(Portage version: 2.1.2.4)
Diffstat (limited to 'dev-ml/ocurl')
-rw-r--r-- | dev-ml/ocurl/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/ocurl/files/digest-ocurl-0.2.1 | 3 | ||||
-rw-r--r-- | dev-ml/ocurl/ocurl-0.2.1.ebuild | 31 |
3 files changed, 40 insertions, 1 deletions
diff --git a/dev-ml/ocurl/ChangeLog b/dev-ml/ocurl/ChangeLog index 870c1e6d3dc5..b9341e3bc3af 100644 --- a/dev-ml/ocurl/ChangeLog +++ b/dev-ml/ocurl/ChangeLog @@ -1,6 +1,11 @@ # 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.2 2007/02/09 02:50:09 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v 1.3 2007/04/17 13:39:08 aballier Exp $ + +*ocurl-0.2.1 (17 Apr 2007) + + 17 Apr 2007; Alexis Ballier <aballier@gentoo.org> +ocurl-0.2.1.ebuild: + Version bump, ~amd64, fixes compilation against curl-7.16 09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/dev-ml/ocurl/files/digest-ocurl-0.2.1 b/dev-ml/ocurl/files/digest-ocurl-0.2.1 new file mode 100644 index 000000000000..a79245f5ec68 --- /dev/null +++ b/dev-ml/ocurl/files/digest-ocurl-0.2.1 @@ -0,0 +1,3 @@ +MD5 6c8674efde3d125a90c7acd93c8dd1f5 ocurl-0.2.1.tar.gz 75246 +RMD160 b93531d78f25b4a0bbe76d638e7eaae4b0e40a94 ocurl-0.2.1.tar.gz 75246 +SHA256 06ff11468ccde2b1c29f6f7cc272fdabec93b43cc4db35137451972a066648f8 ocurl-0.2.1.tar.gz 75246 diff --git a/dev-ml/ocurl/ocurl-0.2.1.ebuild b/dev-ml/ocurl/ocurl-0.2.1.ebuild new file mode 100644 index 000000000000..ac64262995f7 --- /dev/null +++ b/dev-ml/ocurl/ocurl-0.2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ocurl-0.2.1.ebuild,v 1.1 2007/04/17 13:39:08 aballier 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}.tar.gz" + +SLOT="0" +IUSE="doc" + +DEPEND=">=net-misc/curl-7.9.8 +dev-libs/openssl" +RDEPEND="$DEPEND" +KEYWORDS="~amd64 ~ppc ~x86" + +src_compile() +{ + econf --with-findlib || die + emake -j1 all || die +} + +src_install() +{ + findlib_src_install + dodoc COPYING + use doc && dodoc examples/*.ml +} |