summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2014-10-28 07:38:53 +0000
committerAlexis Ballier <aballier@gentoo.org>2014-10-28 07:38:53 +0000
commit49a728a6f085116f3f5014a695f2b5913013621e (patch)
tree4ae5d0d0d9bbe603df494ef06d26be778b2b74d8 /dev-ml
parentversion bump (diff)
downloadgentoo-2-49a728a6f085116f3f5014a695f2b5913013621e.tar.gz
gentoo-2-49a728a6f085116f3f5014a695f2b5913013621e.tar.bz2
gentoo-2-49a728a6f085116f3f5014a695f2b5913013621e.zip
remove old
Signed-off-by: aballier@gentoo.org (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/lablgtk/ChangeLog6
-rw-r--r--dev-ml/lablgtk/lablgtk-2.16.0.ebuild86
-rw-r--r--dev-ml/lablgtk/lablgtk-2.18.0.ebuild88
3 files changed, 5 insertions, 175 deletions
diff --git a/dev-ml/lablgtk/ChangeLog b/dev-ml/lablgtk/ChangeLog
index f0bd61d9dd31..dfb3a7a016f8 100644
--- a/dev-ml/lablgtk/ChangeLog
+++ b/dev-ml/lablgtk/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/lablgtk
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.117 2014/10/28 07:37:49 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.118 2014/10/28 07:38:53 aballier Exp $
+
+ 28 Oct 2014; Alexis Ballier <aballier@gentoo.org> -lablgtk-2.16.0.ebuild,
+ -lablgtk-2.18.0.ebuild:
+ remove old
*lablgtk-2.18.2 (28 Oct 2014)
diff --git a/dev-ml/lablgtk/lablgtk-2.16.0.ebuild b/dev-ml/lablgtk/lablgtk-2.16.0.ebuild
deleted file mode 100644
index afeff3d3cf70..000000000000
--- a/dev-ml/lablgtk/lablgtk-2.16.0.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.16.0.ebuild,v 1.9 2013/06/02 15:35:03 ulm Exp $
-
-EAPI=5
-
-inherit multilib findlib
-
-IUSE="debug examples glade gnome gnomecanvas sourceview +ocamlopt opengl spell svg"
-
-DESCRIPTION="Objective CAML interface for Gtk+2"
-HOMEPAGE="http://lablgtk.forge.ocamlcore.org/"
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/979/${P}.tar.gz"
-LICENSE="LGPL-2.1-with-linking-exception examples? ( lablgtk-examples )"
-
-RDEPEND=">=x11-libs/gtk+-2.10:2
- >=dev-lang/ocaml-3.10:=[ocamlopt?]
- svg? ( >=gnome-base/librsvg-2.2:2 )
- glade? ( >=gnome-base/libglade-2.0.1 )
- gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 )
- gnome? (
- || ( >=gnome-base/gnome-panel-2.32[bonobo] <gnome-base/gnome-panel-2.32 )
- >=gnome-base/gnome-panel-2.4.0
- >=gnome-base/libgnomeui-2.4.0
- )
- opengl? ( >=dev-ml/lablgl-0.98:=
- >=x11-libs/gtkglarea-1.9:2 )
- spell? ( app-text/gtkspell:2 )
- sourceview? ( x11-libs/gtksourceview:2.0 )
- "
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-SLOT="2/${PV}"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~x86-fbsd ~x86-linux"
-
-src_configure() {
- econf $(use_enable debug) \
- $(use_with svg rsvg) \
- $(use_with glade) \
- $(use_with gnome gnomeui) \
- $(use_with gnome panel) \
- $(use_with opengl gl) \
- $(use_with spell gtkspell) \
- --without-gtksourceview \
- $(use_with sourceview gtksourceview2) \
- $(use_with gnomecanvas)
-}
-
-src_compile() {
- emake -j1 all
- if use ocamlopt; then
- emake -j1 opt
- fi
-}
-
-install_examples() {
- insinto /usr/share/doc/${P}/examples
- doins examples/*.ml examples/*.rgb examples/*.png examples/*.xpm
-
- # Install examples for optional components
- use gnomecanvas && insinto /usr/share/doc/${PF}/examples/canvas && doins examples/canvas/*.ml examples/canvas/*.png
- use svg && insinto /usr/share/doc/${PF}/examples/rsvg && doins examples/rsvg/*.ml examples/rsvg/*.svg
- use glade && insinto /usr/share/doc/${PF}/examples/glade && doins examples/glade/*.ml examples/glade/*.glade*
- use sourceview && insinto /usr/share/doc/${PF}/examples/sourceview && doins examples/sourceview/*.ml examples/sourceview/*.lang
- use opengl && insinto /usr/share/doc/${PF}/examples/GL && doins examples/GL/*.ml
- use gnome && insinto /usr/share/doc/${PF}/examples/panel && doins examples/panel/*
-
- docompress -x /usr/share/doc/${PF}/examples
-}
-
-src_install () {
- findlib_src_preinst
- export OCAMLPATH="${OCAMLFIND_DESTDIR}"
- emake install DESTDIR="${D}"
-
- dodoc CHANGES README CHANGES.API
- use examples && install_examples
-}
-
-pkg_postinst () {
- if use examples; then
- elog "To run the examples you can use the lablgtk2 toplevel."
- elog "e.g: lablgtk2 /usr/share/doc/${PF}/examples/testgtk.ml"
- fi
-}
diff --git a/dev-ml/lablgtk/lablgtk-2.18.0.ebuild b/dev-ml/lablgtk/lablgtk-2.18.0.ebuild
deleted file mode 100644
index 6c9fac2b9f03..000000000000
--- a/dev-ml/lablgtk/lablgtk-2.18.0.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.18.0.ebuild,v 1.2 2014/01/16 00:02:18 bicatali Exp $
-
-EAPI=5
-
-inherit multilib findlib
-
-IUSE="debug examples glade gnome gnomecanvas sourceview +ocamlopt opengl spell svg"
-
-DESCRIPTION="Objective CAML interface for Gtk+2"
-HOMEPAGE="http://lablgtk.forge.ocamlcore.org/"
-SRC_URI="https://forge.ocamlcore.org/frs/download.php/1261/${P}.tar.gz"
-LICENSE="LGPL-2.1-with-linking-exception examples? ( lablgtk-examples )"
-
-RDEPEND=">=x11-libs/gtk+-2.10:2
- >=dev-lang/ocaml-3.10:=[ocamlopt?]
- svg? ( >=gnome-base/librsvg-2.2:2 )
- glade? ( >=gnome-base/libglade-2.0.1 )
- gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 )
- gnome? (
- || ( >=gnome-base/gnome-panel-2.32[bonobo] <gnome-base/gnome-panel-2.32 )
- >=gnome-base/gnome-panel-2.4.0
- >=gnome-base/libgnomeui-2.4.0
- )
- opengl? ( >=dev-ml/lablgl-0.98:=
- >=x11-libs/gtkglarea-1.9:2 )
- spell? ( app-text/gtkspell:2 )
- sourceview? ( x11-libs/gtksourceview:2.0 )
- "
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-SLOT="2/${PV}"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-fbsd ~x86-linux"
-
-src_configure() {
- econf $(use_enable debug) \
- $(use_with svg rsvg) \
- $(use_with glade) \
- $(use_with gnome gnomeui) \
- $(use_with gnome panel) \
- $(use_with opengl gl) \
- $(use_with spell gtkspell) \
- --without-gtksourceview \
- $(use_with sourceview gtksourceview2) \
- $(use_with gnomecanvas)
-}
-
-src_compile() {
- emake -j1 all
- if use ocamlopt; then
- emake -j1 opt
- fi
-}
-
-install_examples() {
- insinto /usr/share/doc/${P}/examples
- doins examples/*.ml examples/*.rgb examples/*.png examples/*.xpm
-
- # Install examples for optional components
- use gnomecanvas && insinto /usr/share/doc/${PF}/examples/canvas && doins examples/canvas/*.ml examples/canvas/*.png
- use svg && insinto /usr/share/doc/${PF}/examples/rsvg && doins examples/rsvg/*.ml examples/rsvg/*.svg
- use glade && insinto /usr/share/doc/${PF}/examples/glade && doins examples/glade/*.ml examples/glade/*.glade*
- use sourceview && insinto /usr/share/doc/${PF}/examples/sourceview && doins examples/sourceview/*.ml examples/sourceview/*.lang
- use opengl && insinto /usr/share/doc/${PF}/examples/GL && doins examples/GL/*.ml
- use gnome && insinto /usr/share/doc/${PF}/examples/panel && doins examples/panel/*
-
- docompress -x /usr/share/doc/${PF}/examples
-}
-
-src_install () {
- findlib_src_preinst
- export OCAMLPATH="${OCAMLFIND_DESTDIR}"
- emake install DESTDIR="${D}"
-
- rm -f "${ED}/usr/$(get_libdir)/ocaml/ld.conf"
-
- dodoc CHANGES README CHANGES.API
- use examples && install_examples
-}
-
-pkg_postinst () {
- if use examples; then
- elog "To run the examples you can use the lablgtk2 toplevel."
- elog "e.g: lablgtk2 /usr/share/doc/${PF}/examples/testgtk.ml"
- fi
-}