From 3950d62a59fc331d048149bffab6555603d4a452 Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Tue, 19 Apr 2011 18:51:53 +0000 Subject: version bump Package-Manager: portage-2.2.0_alpha30/cvs/Linux x86_64 --- dev-ml/ocamldsort/ChangeLog | 9 +++-- dev-ml/ocamldsort/ocamldsort-0.15.0.ebuild | 28 +++++++++++++++ dev-ml/ocamlsdl/ChangeLog | 9 +++-- dev-ml/ocamlsdl/ocamlsdl-0.8.0.ebuild | 57 ++++++++++++++++++++++++++++++ 4 files changed, 99 insertions(+), 4 deletions(-) create mode 100644 dev-ml/ocamldsort/ocamldsort-0.15.0.ebuild create mode 100644 dev-ml/ocamlsdl/ocamlsdl-0.8.0.ebuild (limited to 'dev-ml') diff --git a/dev-ml/ocamldsort/ChangeLog b/dev-ml/ocamldsort/ChangeLog index 4e8a127911d5..f763b2a4a65d 100644 --- a/dev-ml/ocamldsort/ChangeLog +++ b/dev-ml/ocamldsort/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/ocamldsort -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamldsort/ChangeLog,v 1.7 2008/09/02 18:08:30 aballier Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamldsort/ChangeLog,v 1.8 2011/04/19 18:49:10 aballier Exp $ + +*ocamldsort-0.15.0 (19 Apr 2011) + + 19 Apr 2011; Alexis Ballier +ocamldsort-0.15.0.ebuild: + version bump 02 Sep 2008; Alexis Ballier -ocamldsort-0.14.2.ebuild: diff --git a/dev-ml/ocamldsort/ocamldsort-0.15.0.ebuild b/dev-ml/ocamldsort/ocamldsort-0.15.0.ebuild new file mode 100644 index 000000000000..d60f8f82ed17 --- /dev/null +++ b/dev-ml/ocamldsort/ocamldsort-0.15.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamldsort/ocamldsort-0.15.0.ebuild,v 1.1 2011/04/19 18:49:10 aballier Exp $ + +DESCRIPTION="A dependency sorter for OCaml source files" +HOMEPAGE="http://dimitri.mutu.net/ocaml.html" + +SRC_URI="ftp://quatramaran.ens.fr/pub/ara/ocamldsort/${P}.tar.gz" + +LICENSE="LGPL-2" + +SLOT="0" + +KEYWORDS="~amd64 ~ppc ~x86" + +IUSE="" + +DEPEND=">=dev-lang/ocaml-3.06" + +src_compile() { + econf + emake -j1 || die +} + +src_install() { + emake BINDIR="${D}/usr/bin" MANDIR="${D}/usr/share/man" install || die "make install failed" + dodoc README THANKS Changes +} diff --git a/dev-ml/ocamlsdl/ChangeLog b/dev-ml/ocamlsdl/ChangeLog index 587fedb3492c..3366b6f7aa93 100644 --- a/dev-ml/ocamlsdl/ChangeLog +++ b/dev-ml/ocamlsdl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/ocamlsdl -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v 1.11 2008/01/04 01:31:09 aballier Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v 1.12 2011/04/19 18:51:53 aballier Exp $ + +*ocamlsdl-0.8.0 (19 Apr 2011) + + 19 Apr 2011; Alexis Ballier +ocamlsdl-0.8.0.ebuild: + version bump 04 Jan 2008; Alexis Ballier ocamlsdl-0.7.2.ebuild: ~amd64, working fine here diff --git a/dev-ml/ocamlsdl/ocamlsdl-0.8.0.ebuild b/dev-ml/ocamlsdl/ocamlsdl-0.8.0.ebuild new file mode 100644 index 000000000000..c27c191a830f --- /dev/null +++ b/dev-ml/ocamlsdl/ocamlsdl-0.8.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.8.0.ebuild,v 1.1 2011/04/19 18:51:53 aballier Exp $ + +inherit findlib + +DESCRIPTION="OCaml SDL Bindings" + +HOMEPAGE="http://ocamlsdl.sourceforge.net" +SRC_URI="mirror://sourceforge/ocamlsdl/${P}.tar.gz" +LICENSE="LGPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc opengl truetype" #noimage nomixer + +DEPEND=">=dev-lang/ocaml-3.04 +>=media-libs/libsdl-1.2 +opengl? ( >=dev-ml/lablgl-0.98 ) +>=media-libs/sdl-mixer-1.2 +>=media-libs/sdl-image-1.2 +truetype? ( >=media-libs/sdl-ttf-2.0 )" + +src_compile() { + myconf="" + if use opengl; then + destdir=`ocamlfind printconf destdir` + lablgldir=`find ${destdir} -name "lablgl" -or -name "lablGL"` + if [ -z "${lablgldir}" ]; then + destdir=`ocamlc -where` + lablgldir=`find ${destdir} -name "lablgl" -or -name "lablGL"` + fi + + if [ ! -z "${lablgldir}" ]; then + myconf="--with-lablgldir=${lablgldir}" + fi + fi + + #use noimage && myconf="${myconf} --without-sdl-image" + #use nomixer && myconf="${myconf} --without-sdl-mixer" + + econf $myconf \ + `use_enable truetype sdl-ttf` \ + || die + emake all || die +} + +src_install() { + findlib_src_install + + dodoc AUTHORS NEWS README || die + doinfo doc/*.info* || die + + if use doc; then + dohtml doc/html/* || die + fi +} -- cgit v1.2.3-65-gdbad