summaryrefslogtreecommitdiff
path: root/x11-libs/gtkdatabox/gtkdatabox-0.9.3.0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'x11-libs/gtkdatabox/gtkdatabox-0.9.3.0.ebuild')
-rw-r--r--x11-libs/gtkdatabox/gtkdatabox-0.9.3.0.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/x11-libs/gtkdatabox/gtkdatabox-0.9.3.0.ebuild b/x11-libs/gtkdatabox/gtkdatabox-0.9.3.0.ebuild
deleted file mode 100644
index 7262b803969b..000000000000
--- a/x11-libs/gtkdatabox/gtkdatabox-0.9.3.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Gtk+ Widgets for live display of large amounts of fluctuating numerical data"
-HOMEPAGE="https://sourceforge.net/projects/gtkdatabox/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="examples +glade test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="x11-libs/cairo
- x11-libs/gtk+:2
- x11-libs/pango
- glade? ( gnome-base/libglade )"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
-
- # Remove -D.*DISABLE_DEPRECATED cflags
- find . -iname 'Makefile.am' -exec \
- sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die
- # Do Makefile.in after Makefile.am to avoid automake maintainer-mode
- find . -iname 'Makefile.in' -exec \
- sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die
- sed -e '/SUBDIRS/{s: examples::;}' -i Makefile.am -i Makefile.in || die
-}
-
-src_configure() {
- econf \
- $(use_enable glade libglade) \
- --disable-glade \
- --disable-static \
- $(use_enable test gtktest) \
- --enable-libtool-lock
-}
-
-src_install() {
- default
-
- find "${ED}" -type f -name '*.la' -delete || die
-
- dodoc AUTHORS ChangeLog README TODO
-
- if use examples; then
- docinto examples
- dodoc "${S}"/examples/*
- fi
-}