summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2017-12-22 01:16:57 +0200
committerMart Raudsepp <leio@gentoo.org>2017-12-22 01:31:20 +0200
commit189a8470dc011968573d8faa4cfee4a3dfe69b91 (patch)
treef0cfc3eed64c53c33e79c81779e548530d0a508c /x11-libs
parentsys-apps/osinfo-db: remove old (diff)
downloadgentoo-189a8470dc011968573d8faa4cfee4a3dfe69b91.tar.gz
gentoo-189a8470dc011968573d8faa4cfee4a3dfe69b91.tar.bz2
gentoo-189a8470dc011968573d8faa4cfee4a3dfe69b91.zip
x11-libs/goocanvas: remove old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/goocanvas/Manifest2
-rw-r--r--x11-libs/goocanvas/goocanvas-2.0.2.ebuild68
-rw-r--r--x11-libs/goocanvas/goocanvas-2.0.3.ebuild68
3 files changed, 0 insertions, 138 deletions
diff --git a/x11-libs/goocanvas/Manifest b/x11-libs/goocanvas/Manifest
index 5f15010bde78..2fdbd0d2d50e 100644
--- a/x11-libs/goocanvas/Manifest
+++ b/x11-libs/goocanvas/Manifest
@@ -1,4 +1,2 @@
DIST goocanvas-1.0.0.tar.bz2 570552 BLAKE2B 00b1a3d59448cc2f40dd20b0c97977cfc477a6656f32e2106b3f3bd5c42b8b625e270d9f96de44f30caf83b744b331699e7c6385b5269bf7b22e3bb25a879948 SHA512 fef4364b57dc777b6dcceb026f940121a24a8a3792e8d37d320eb47b7747ab0d54d8d7911b4ff77c21ca2b251937c9312da04221bbc246a07bbf4062689de644
-DIST goocanvas-2.0.2.tar.xz 502732 BLAKE2B 33dddd842588efc35f44c0f9bbd29552818a96df2487adef714f4883250aa91e1957c37356e74fae180fa1e352aeca6eb0d61d9e8c39f559ad795e658d712f9b SHA512 2b3014b832a5426884aa472fbfabcca171ef90305afccd312583d259517725a1839509e39b13b30c5097bf54ed9b3dfd2bf9eeca4e813a82d14cf1d5a54578ac
-DIST goocanvas-2.0.3.tar.xz 584532 BLAKE2B 0f4f3dd61af3af3cb1e7fbf8e0395982f67df997feee3171fde1c8c8458a2dc62b55e3307e9d61d2d6465f4e17781af949761ab3ed090e5079dc100db5e64304 SHA512 e7db229d029906febc5cc8154cecfe9a7c81497abfb1cdf8e41b8135ef87ef7478dac60bd160adb0d6efbe69680be488c67e78497cb89b1ba295a407af04b786
DIST goocanvas-2.0.4.tar.xz 584272 BLAKE2B 027ab47c1e9c241f74509001426367e86025ec8ea5901cf64c2014f8c32b83ce60870ca754dd15e8982a7023b77d3856b39dbbbdd636de6da47d361cb15a940e SHA512 e57dfd59d9b9cb64deadfeac193c11a89347c7f0e966377cfb98afcc2b46be13fe05d253a96e63dc7e6981c75e6e871040b83d8d0aee95cb62b79965d6be5688
diff --git a/x11-libs/goocanvas/goocanvas-2.0.2.ebuild b/x11-libs/goocanvas/goocanvas-2.0.2.ebuild
deleted file mode 100644
index de7678e1ec1f..000000000000
--- a/x11-libs/goocanvas/goocanvas-2.0.2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-GCONF_DEBUG="no"
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2 python-r1
-
-DESCRIPTION="Canvas widget for GTK+ using the cairo 2D library for drawing"
-HOMEPAGE="https://wiki.gnome.org/GooCanvas"
-
-LICENSE="LGPL-2"
-SLOT="2.0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-IUSE="examples +introspection python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-# python only enables python specific binding override
-RDEPEND="
- >=x11-libs/gtk+-3.0.0:3
- >=dev-libs/glib-2.28.0:2
- >=x11-libs/cairo-1.10.0
- introspection? ( >=dev-libs/gobject-introspection-0.6.7 )
- python? (
- ${PYTHON_DEPS}
- >=dev-python/pygobject-2.90.4:3[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
- dev-util/gtk-doc-am
- virtual/pkgconfig
-"
-
-src_prepare() {
- # Do not build demos
- sed -e 's/^\(SUBDIRS =.*\)demo\(.*\)$/\1\2/' \
- -i Makefile.am Makefile.in || die "sed failed"
-
- # Python bindings are built/installed manually.
- sed -e "/SUBDIRS = python/d" -i bindings/Makefile.am bindings/Makefile.in
-
- gnome2_src_prepare
-}
-
-src_configure() {
- gnome2_src_configure \
- --disable-rebuilds \
- --disable-static \
- $(use_enable introspection) \
- --disable-python
-}
-
-src_install() {
- gnome2_src_install
-
- if use python; then
- sub_install() {
- python_moduleinto $(python -c "import gi;print gi._overridesdir")
- python_domodule bindings/python/GooCanvas.py
- }
- python_foreach_impl sub_install
- fi
-
- if use examples; then
- insinto "/usr/share/doc/${P}/examples/"
- doins demo/*.[ch] demo/*.png
- fi
-}
diff --git a/x11-libs/goocanvas/goocanvas-2.0.3.ebuild b/x11-libs/goocanvas/goocanvas-2.0.3.ebuild
deleted file mode 100644
index 41235bfdd14c..000000000000
--- a/x11-libs/goocanvas/goocanvas-2.0.3.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2 python-r1
-
-DESCRIPTION="Canvas widget for GTK+ using the cairo 2D library for drawing"
-HOMEPAGE="https://wiki.gnome.org/GooCanvas"
-
-LICENSE="LGPL-2"
-SLOT="2.0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="examples +introspection python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-# python only enables python specific binding override
-RDEPEND="
- >=x11-libs/gtk+-3.0.0:3
- >=dev-libs/glib-2.28.0:2
- >=x11-libs/cairo-1.10.0
- introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
- python? (
- ${PYTHON_DEPS}
- >=dev-python/pygobject-2.90.4:3[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
- >=dev-util/gtk-doc-am-1.8
- >=sys-devel/gettext-0.19.4
- virtual/pkgconfig
-"
-
-src_prepare() {
- # Do not build demos
- sed -e 's/^\(SUBDIRS =.*\)demo\(.*\)$/\1\2/' \
- -i Makefile.am Makefile.in || die "sed failed"
-
- # Python bindings are built/installed manually.
- sed -e "/SUBDIRS = python/d" -i bindings/Makefile.am bindings/Makefile.in
-
- gnome2_src_prepare
-}
-
-src_configure() {
- gnome2_src_configure \
- --disable-rebuilds \
- --disable-static \
- $(use_enable introspection) \
- --disable-python
-}
-
-src_install() {
- gnome2_src_install
-
- if use python; then
- sub_install() {
- python_moduleinto $(python -c "import gi;print gi._overridesdir")
- python_domodule bindings/python/GooCanvas.py
- }
- python_foreach_impl sub_install
- fi
-
- if use examples; then
- insinto "/usr/share/doc/${P}/examples/"
- doins demo/*.[ch] demo/*.png
- fi
-}