summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-03-04 12:33:02 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-03-04 12:33:02 +0000
commit52b72db0597cfde4e918fb4959d1f16a3b381909 (patch)
treed58b0cd9248418c490ce6a8718c1b9cb17fa6f98 /dev-ml
parentx86 stable per bug 354529 (diff)
downloadgentoo-2-52b72db0597cfde4e918fb4959d1f16a3b381909.tar.gz
gentoo-2-52b72db0597cfde4e918fb4959d1f16a3b381909.tar.bz2
gentoo-2-52b72db0597cfde4e918fb4959d1f16a3b381909.zip
version bump
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/odns/ChangeLog7
-rw-r--r--dev-ml/odns/odns-0.3.ebuild29
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-ml/odns/ChangeLog b/dev-ml/odns/ChangeLog
index acb83735f23c..31ad326b8235 100644
--- a/dev-ml/odns/ChangeLog
+++ b/dev-ml/odns/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/odns
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/odns/ChangeLog,v 1.1 2011/02/04 12:59:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/odns/ChangeLog,v 1.2 2011/03/04 12:33:02 aballier Exp $
+
+*odns-0.3 (04 Mar 2011)
+
+ 04 Mar 2011; Alexis Ballier <aballier@gentoo.org> +odns-0.3.ebuild:
+ version bump
*odns-0.2 (04 Feb 2011)
diff --git a/dev-ml/odns/odns-0.3.ebuild b/dev-ml/odns/odns-0.3.ebuild
new file mode 100644
index 000000000000..d6fdbfb7db43
--- /dev/null
+++ b/dev-ml/odns/odns-0.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/odns/odns-0.3.ebuild,v 1.1 2011/03/04 12:33:02 aballier Exp $
+
+EAPI=3
+
+inherit findlib
+
+DESCRIPTION="OCaml library to query DNS servers"
+HOMEPAGE="http://odns.tuxfamily.org/"
+SRC_URI="http://download.tuxfamily.org/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt]"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ sed -i -e "s/version=\"0.2\"/version=\"${PV}\"/" META || die
+}
+
+src_install() {
+ findlib_src_preinst
+ PREFIX="${D}/usr" emake install || die
+ dodoc AUTHORS README || die
+}