summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-04-27 10:57:28 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-04-27 10:57:28 +0300
commit1216c3771c594dfcb631688c2d2667f225b6d3a8 (patch)
treeb808932187d6dd6f516c43123f0a5a7e1cdd667d /x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild
parentmedia-sound/galan: remove last-rited pkg (diff)
downloadgentoo-1216c3771c594dfcb631688c2d2667f225b6d3a8.tar.gz
gentoo-1216c3771c594dfcb631688c2d2667f225b6d3a8.tar.bz2
gentoo-1216c3771c594dfcb631688c2d2667f225b6d3a8.zip
x11-libs/gtkglarea: remove last-rited pkg
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild')
-rw-r--r--x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild b/x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild
deleted file mode 100644
index 883fed910522..000000000000
--- a/x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="OpenGL canvas and context provider for GTK+"
-HOMEPAGE="https://www.mono-project.com/archived/gtkglarea/"
-
-LICENSE="LGPL-2+ GPL-2+" # examples are GPL-2+, library is LGPL-2+
-SLOT="2"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="examples"
-
-RDEPEND="
- >=x11-libs/gtk+-2.22:2
- virtual/opengl
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- # Do not build examples
- sed -e "s:\(SUBDIRS.*\)examples:\1:" \
- -i Makefile.am Makefile.in || die "sed 1 failed"
-
- gnome2_src_prepare
-}
-
-src_configure() {
- gnome2_src_configure --disable-static
-}
-
-src_install() {
- DOCS="AUTHORS ChangeLog NEWS README* docs/*.txt"
- gnome2_src_install
-
- if use examples; then
- cd "${S}"/examples
- insinto /usr/share/doc/${PF}/examples
- doins *.c *.h *.lwo README
- fi
-}