diff options
author | Matthieu Sozeau <mattam@gentoo.org> | 2005-02-17 20:15:56 +0000 |
---|---|---|
committer | Matthieu Sozeau <mattam@gentoo.org> | 2005-02-17 20:15:56 +0000 |
commit | 69101438ebcd725ea56efcd15c558c572c4bb53d (patch) | |
tree | aabd488c8bbaa925039ab94d93494cf1611f66d7 /dev-ml/ocamlsdl | |
parent | added ~amd64 to KEYWORDS. fixes #82116 (diff) | |
download | gentoo-2-69101438ebcd725ea56efcd15c558c572c4bb53d.tar.gz gentoo-2-69101438ebcd725ea56efcd15c558c572c4bb53d.tar.bz2 gentoo-2-69101438ebcd725ea56efcd15c558c572c4bb53d.zip |
stable on x86, ppc
Diffstat (limited to 'dev-ml/ocamlsdl')
-rw-r--r-- | dev-ml/ocamlsdl/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild | 4 | ||||
-rw-r--r-- | dev-ml/ocamlsdl/ocamlsdl-0.7.1.ebuild | 18 |
3 files changed, 17 insertions, 13 deletions
diff --git a/dev-ml/ocamlsdl/ChangeLog b/dev-ml/ocamlsdl/ChangeLog index ef2edc877530..0cc4ff18998a 100644 --- a/dev-ml/ocamlsdl/ChangeLog +++ b/dev-ml/ocamlsdl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ml/ocamlsdl -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v 1.4 2004/08/25 21:05:32 mattam Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v 1.5 2005/02/17 20:15:56 mattam Exp $ + + 17 Feb 2005; Matthieu Sozeau <mattam@gentoo.org> ocamlsdl-0.7.1.ebuild: + Stable on x86, ppc. Did not add new use flags to control sdl-mixer,sdl-image + but could. *ocamlsdl-0.7.1 (25 Aug 2004) diff --git a/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild b/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild index e95637783028..bae8ffeeeb36 100644 --- a/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild +++ b/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild,v 1.4 2004/08/25 21:05:32 mattam Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild,v 1.5 2005/02/17 20:15:56 mattam Exp $ DESCRIPTION="OCaml SDL Bindings" diff --git a/dev-ml/ocamlsdl/ocamlsdl-0.7.1.ebuild b/dev-ml/ocamlsdl/ocamlsdl-0.7.1.ebuild index 3fe68f7ccf08..3c7a2e5459c8 100644 --- a/dev-ml/ocamlsdl/ocamlsdl-0.7.1.ebuild +++ b/dev-ml/ocamlsdl/ocamlsdl-0.7.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.7.1.ebuild,v 1.1 2004/08/25 21:05:32 mattam Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.7.1.ebuild,v 1.2 2005/02/17 20:15:56 mattam Exp $ inherit findlib @@ -11,14 +11,14 @@ SRC_URI="mirror://sourceforge/ocamlsdl/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc" -IUSE="doc opengl truetype noimage nomixer" +KEYWORDS="x86 ppc" +IUSE="doc opengl truetype" #noimage nomixer DEPEND=">=dev-lang/ocaml-3.04 >=media-libs/libsdl-1.2 opengl? ( >=dev-ml/lablgl-0.98 ) -!nomixer? ( >=media-libs/sdl-mixer-1.2 ) -!noimage? ( >=media-libs/sdl-image-1.2 ) +>=media-libs/sdl-mixer-1.2 +>=media-libs/sdl-image-1.2 truetype? ( >=media-libs/sdl-ttf-2.0 )" src_compile() { @@ -36,13 +36,13 @@ src_compile() { fi fi - use noimage && myconf="${myconf} --without-sdl-image" - use nomixer && myconf="${myconf} --without-sdl-mixer" + #use noimage && myconf="${myconf} --without-sdl-image" + #use nomixer && myconf="${myconf} --without-sdl-mixer" econf $myconf \ `use_enable truetype sdl-ttf` \ || die - make all || die + emake all || die } src_install() { |