public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlgraph: ChangeLog ocamlgraph-0.99b.ebuild
@ 2008-01-04  1:27 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-04  1:27 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/04 01:27:16

  Modified:             ChangeLog
  Added:                ocamlgraph-0.99b.ebuild
  Log:
  version bump, allow building without ocamlopt
  (Portage version: 2.1.4_rc14)

Revision  Changes    Path
1.6                  dev-ml/ocamlgraph/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	26 May 2007 19:34:05 -0000	1.5
+++ ChangeLog	4 Jan 2008 01:27:16 -0000	1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/ocamlgraph
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.5 2007/05/26 19:34:05 aballier Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.6 2008/01/04 01:27:16 aballier Exp $
+
+*ocamlgraph-0.99b (04 Jan 2008)
+
+  04 Jan 2008; Alexis Ballier <aballier@gentoo.org>
+  +files/ocamlgraph-0.99b-installfindlib.patch, +ocamlgraph-0.99b.ebuild:
+  version bump, allow building without ocamlopt
 
 *ocamlgraph-0.98 (26 May 2007)
 



1.1                  dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?rev=1.1&content-type=text/plain

Index: ocamlgraph-0.99b.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v 1.1 2008/01/04 01:27:16 aballier Exp $

inherit findlib eutils

EAPI="1"

DESCRIPTION="O'Caml Graph library"
HOMEPAGE="http://www.lri.fr/~filliatr/ocamlgraph/"
SRC_URI="http://www.lri.fr/~filliatr/ftp/ocamlgraph/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND=">=dev-lang/ocaml-3.08
	doc? ( dev-tex/hevea dev-ml/ocamlweb )
	gtk? ( dev-ml/lablgtk )"
IUSE="doc examples gtk +ocamlopt"

ocamlgraph_need_use() {
	if ! built_with_use --missing true $1 $2; then
		eerror "In order to build ${PN} with your useflags you first need to build $1 with $2 useflag"
		die "Please install $1 with $2 useflag"
	fi
}

pkg_setup() {
	use ocamlopt && ocamlgraph_need_use 'dev-lang/ocaml' ocamlopt
	use gtk && ocamlgraph_need_use 'dev-ml/lablgtk' gnomecanvas
	use ocamlopt && use gtk && ocamlgraph_need_use 'dev-lang/lablgtk' ocamlopt
}

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}/${P}-installfindlib.patch"
}

src_compile() {
	econf
	emake -j1 || die "failed to build"

	if use doc;	then
		emake doc || die "making documentation failed"
	fi
	if use gtk; then
		emake -j1 editor || die "compiling editor failed"
	fi
}

src_install() {
	findlib_src_preinst
	emake install-findlib || die "make install failed"

	if use gtk; then
		if use ocamlopt; then
			newbin editor/editor.opt ocamlgraph_editor || die "failed to install ocamlgraph_editor"
		else
			newbin editor/editor.byte ocamlgraph_editor || die "failed to install ocamlgraph_editor"
		fi
	fi
	dodoc README CREDITS FAQ CHANGES
	if use doc; then
		dohtml doc/*
	fi
	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples
	fi
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlgraph: ChangeLog ocamlgraph-0.99b.ebuild
@ 2008-01-19  1:36 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-19  1:36 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/19 01:36:07

  Modified:             ChangeLog ocamlgraph-0.99b.ebuild
  Log:
  Annoying typo...
  (Portage version: 2.1.4)

Revision  Changes    Path
1.7                  dev-ml/ocamlgraph/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	4 Jan 2008 01:27:16 -0000	1.6
+++ ChangeLog	19 Jan 2008 01:36:07 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ocamlgraph
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.6 2008/01/04 01:27:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.7 2008/01/19 01:36:07 aballier Exp $
+
+  19 Jan 2008; Alexis Ballier <aballier@gentoo.org> ocamlgraph-0.99b.ebuild:
+  Annoying typo...
 
 *ocamlgraph-0.99b (04 Jan 2008)
 



1.2                  dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?r1=1.1&r2=1.2

Index: ocamlgraph-0.99b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ocamlgraph-0.99b.ebuild	4 Jan 2008 01:27:16 -0000	1.1
+++ ocamlgraph-0.99b.ebuild	19 Jan 2008 01:36:07 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v 1.1 2008/01/04 01:27:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v 1.2 2008/01/19 01:36:07 aballier Exp $
 
 inherit findlib eutils
 
@@ -27,7 +27,7 @@
 pkg_setup() {
 	use ocamlopt && ocamlgraph_need_use 'dev-lang/ocaml' ocamlopt
 	use gtk && ocamlgraph_need_use 'dev-ml/lablgtk' gnomecanvas
-	use ocamlopt && use gtk && ocamlgraph_need_use 'dev-lang/lablgtk' ocamlopt
+	use ocamlopt && use gtk && ocamlgraph_need_use 'dev-ml/lablgtk' ocamlopt
 }
 
 src_unpack() {



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlgraph: ChangeLog ocamlgraph-0.99b.ebuild
@ 2009-09-28 16:51 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 4+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-28 16:51 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/09/28 16:51:57

  Modified:             ChangeLog ocamlgraph-0.99b.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.12                 dev-ml/ocamlgraph/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	6 Apr 2008 19:42:21 -0000	1.11
+++ ChangeLog	28 Sep 2009 16:51:57 -0000	1.12
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlgraph
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.11 2008/04/06 19:42:21 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.12 2009/09/28 16:51:57 betelgeuse Exp $
+
+  28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org>
+  ocamlgraph-0.99b.ebuild:
+  Migrate to EAPI 2 in order to nuke built_with_use.
 
   06 Apr 2008; Alexis Ballier <aballier@gentoo.org> -ocamlgraph-0.81.ebuild:
   remove old



1.5                  dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild

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

Index: ocamlgraph-0.99b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ocamlgraph-0.99b.ebuild	6 Apr 2008 19:33:03 -0000	1.4
+++ ocamlgraph-0.99b.ebuild	28 Sep 2009 16:51:57 -0000	1.5
@@ -1,10 +1,10 @@
-# 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/ocamlgraph/ocamlgraph-0.99b.ebuild,v 1.4 2008/04/06 19:33:03 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v 1.5 2009/09/28 16:51:57 betelgeuse Exp $
 
-inherit findlib eutils
+EAPI="2"
 
-EAPI="1"
+inherit findlib eutils
 
 DESCRIPTION="O'Caml Graph library"
 HOMEPAGE="http://www.lri.fr/~filliatr/ocamlgraph/"
@@ -12,33 +12,16 @@
 LICENSE="LGPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ppc x86"
-DEPEND=">=dev-lang/ocaml-3.08
+DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
 	doc? ( dev-tex/hevea dev-ml/ocamlweb )
-	gtk? ( dev-ml/lablgtk )"
+	gtk? ( dev-ml/lablgtk[gnomecanvas,ocamlopt?] )"
 IUSE="doc examples gtk +ocamlopt"
 
-ocamlgraph_need_use() {
-	if ! built_with_use --missing true $1 $2; then
-		eerror "In order to build ${PN} with your useflags you first need to build $1 with $2 useflag"
-		die "Please install $1 with $2 useflag"
-	fi
-}
-
-pkg_setup() {
-	use ocamlopt && ocamlgraph_need_use 'dev-lang/ocaml' ocamlopt
-	use gtk && ocamlgraph_need_use 'dev-ml/lablgtk' gnomecanvas
-	use ocamlopt && use gtk && ocamlgraph_need_use 'dev-ml/lablgtk' ocamlopt
-}
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-
+src_prepare() {
 	epatch "${FILESDIR}/${P}-installfindlib.patch"
 }
 
 src_compile() {
-	econf
 	emake -j1 || die "failed to build"
 
 	if use doc;	then
@@ -60,7 +43,7 @@
 			newbin editor/editor.byte ocamlgraph_editor || die "failed to install ocamlgraph_editor"
 		fi
 	fi
-	dodoc README CREDITS FAQ CHANGES
+	dodoc README CREDITS FAQ CHANGES || die
 	if use doc; then
 		dohtml doc/*
 	fi






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlgraph: ChangeLog ocamlgraph-0.99b.ebuild
@ 2013-08-19 13:46 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2013-08-19 13:46 UTC (permalink / raw
  To: gentoo-commits

aballier    13/08/19 13:46:39

  Modified:             ChangeLog ocamlgraph-0.99b.ebuild
  Log:
  eapi5, define subslot and add := dep on ocaml
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.13                 dev-ml/ocamlgraph/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgraph/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgraph/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgraph/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	28 Sep 2009 16:51:57 -0000	1.12
+++ ChangeLog	19 Aug 2013 13:46:39 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ocamlgraph
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.12 2009/09/28 16:51:57 betelgeuse Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.13 2013/08/19 13:46:39 aballier Exp $
+
+  19 Aug 2013; Alexis Ballier <aballier@gentoo.org> ocamlgraph-0.99b.ebuild:
+  eapi5, define subslot and add := dep on ocaml
 
   28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org>
   ocamlgraph-0.99b.ebuild:



1.6                  dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild?r1=1.5&r2=1.6

Index: ocamlgraph-0.99b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ocamlgraph-0.99b.ebuild	28 Sep 2009 16:51:57 -0000	1.5
+++ ocamlgraph-0.99b.ebuild	19 Aug 2013 13:46:39 -0000	1.6
@@ -1,8 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v 1.5 2009/09/28 16:51:57 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.99b.ebuild,v 1.6 2013/08/19 13:46:39 aballier Exp $
 
-EAPI="2"
+EAPI=5
 
 inherit findlib eutils
 
@@ -10,11 +10,12 @@
 HOMEPAGE="http://www.lri.fr/~filliatr/ocamlgraph/"
 SRC_URI="http://www.lri.fr/~filliatr/ftp/ocamlgraph/${P}.tar.gz"
 LICENSE="LGPL-2"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64 ppc x86"
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
-	doc? ( dev-tex/hevea dev-ml/ocamlweb )
-	gtk? ( dev-ml/lablgtk[gnomecanvas,ocamlopt?] )"
+RDEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?]
+	gtk? ( dev-ml/lablgtk:=[gnomecanvas,ocamlopt?] )"
+DEPEND="${RDEPEND}
+	doc? ( dev-tex/hevea dev-ml/ocamlweb )"
 IUSE="doc examples gtk +ocamlopt"
 
 src_prepare() {
@@ -22,33 +23,34 @@
 }
 
 src_compile() {
-	emake -j1 || die "failed to build"
+	emake -j1
 
 	if use doc;	then
-		emake doc || die "making documentation failed"
+		emake doc
 	fi
 	if use gtk; then
-		emake -j1 editor || die "compiling editor failed"
+		emake -j1 editor
 	fi
 }
 
 src_install() {
 	findlib_src_preinst
-	emake install-findlib || die "make install failed"
+	emake install-findlib
 
 	if use gtk; then
 		if use ocamlopt; then
-			newbin editor/editor.opt ocamlgraph_editor || die "failed to install ocamlgraph_editor"
+			newbin editor/editor.opt ocamlgraph_editor
 		else
-			newbin editor/editor.byte ocamlgraph_editor || die "failed to install ocamlgraph_editor"
+			newbin editor/editor.byte ocamlgraph_editor
 		fi
 	fi
-	dodoc README CREDITS FAQ CHANGES || die
+	dodoc README CREDITS FAQ CHANGES
 	if use doc; then
 		dohtml doc/*
 	fi
 	if use examples; then
 		insinto /usr/share/doc/${PF}
 		doins -r examples
+		docompress -x /usr/share/doc/${PF}/examples
 	fi
 }





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-08-19 13:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-19  1:36 [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlgraph: ChangeLog ocamlgraph-0.99b.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-19 13:46 Alexis Ballier (aballier)
2009-09-28 16:51 Petteri Raty (betelgeuse)
2008-01-04  1:27 Alexis Ballier (aballier)

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