public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild
@ 2009-09-28 16:33 99% Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 1+ results
From: Petteri Raty (betelgeuse) @ 2009-09-28 16:33 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/09/28 16:33:57

  Modified:             ChangeLog extlib-1.5.1.ebuild
  Log:
  Migrate to EAPI 2 in order to nuke built_with_use.
  (Portage version: 2.2_rc40/cvs/Linux i686)

Revision  Changes    Path
1.10                 dev-ml/extlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	20 Apr 2008 14:20:27 -0000	1.9
+++ ChangeLog	28 Sep 2009 16:33:56 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/extlib
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.9 2008/04/20 14:20:27 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.10 2009/09/28 16:33:56 betelgeuse Exp $
+
+  28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> extlib-1.5.1.ebuild:
+  Migrate to EAPI 2 in order to nuke built_with_use.
 
   20 Apr 2008; Alexis Ballier <aballier@gentoo.org>
   -files/extlib-1.5-ExtList.remove.patch, -extlib-1.4.ebuild,
@@ -28,7 +31,7 @@
   21 Sep 2005; Matthieu Sozeau <mattam@gentoo.org> :
   Version bump (fixes #87864).
 
-*extlib-1.3 (06 Feb 2005)
+*extlib-1.4 (06 Feb 2005)
 
   06 Feb 2005; Matthieu Sozeau <mattam@gentoo.org> -extlib-1.2.ebuild,
   +extlib-1.4.ebuild:



1.5                  dev-ml/extlib/extlib-1.5.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?r1=1.4&r2=1.5

Index: extlib-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- extlib-1.5.1.ebuild	20 Apr 2008 14:09:02 -0000	1.4
+++ extlib-1.5.1.ebuild	28 Sep 2009 16:33:56 -0000	1.5
@@ -1,29 +1,20 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.4 2008/04/20 14:09:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.5 2009/09/28 16:33:56 betelgeuse Exp $
 
-inherit findlib eutils
+EAPI="2"
 
-EAPI="1"
+inherit findlib eutils
 
 DESCRIPTION="Standard library extensions for O'Caml"
 HOMEPAGE="http://code.google.com/p/ocaml-extlib/"
 SRC_URI="http://ocaml-extlib.googlecode.com/files/${P}.tar.gz"
 LICENSE="LGPL-2.1"
-DEPEND=">=dev-lang/ocaml-3.07"
+DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
 IUSE="doc +ocamlopt"
 
-pkg_setup() {
-	if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
-		eerror "In order to build ${PN} with native code support from ocaml"
-		eerror "You first need to have a native code ocaml compiler."
-		eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
-		die "Please install ocaml with ocamlopt useflag"
-	fi
-}
-
 src_compile() {
 	emake all || die "failed to build"
 	if use ocamlopt; then
@@ -39,9 +30,9 @@
 	findlib_src_install
 
 	# install documentation
-	dodoc README.txt
+	dodoc README.txt || die
 
 	if use doc; then
-		dohtml doc/*
+		dohtml doc/* || die
 	fi
 }






^ permalink raw reply	[relevance 99%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2009-09-28 16:33 99% [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild Petteri Raty (betelgeuse)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox