Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
aballier 12/06/22 12:42:31
Modified: ChangeLog
Added: ocamlsdl-0.9.0.ebuild
Log:
version bump
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.17 dev-ml/ocamlsdl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlsdl/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlsdl/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlsdl/ChangeLog?r1=1.16&r2=1.17
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog 23 Feb 2012 20:34:12 -0000 1.16
+++ ChangeLog 22 Jun 2012 12:42:30 -0000 1.17
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/ocamlsdl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v 1.16 2012/02/23 20:34:12 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v 1.17 2012/06/22 12:42:30 aballier Exp $
+
+*ocamlsdl-0.9.0 (22 Jun 2012)
+
+ 22 Jun 2012; Alexis Ballier <aballier@g.o> +ocamlsdl-0.9.0.ebuild:
+ version bump
23 Feb 2012; Alexis Ballier <aballier@g.o> -ocamlsdl-0.7.1.ebuild,
-ocamlsdl-0.7.2.ebuild:
1.1 dev-ml/ocamlsdl/ocamlsdl-0.9.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.9.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.9.0.ebuild?rev=1.1&content-type=text/plain
Index: ocamlsdl-0.9.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.9.0.ebuild,v 1.1 2012/06/22 12:42:30 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 ~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
}
|
|