diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-02-16 13:07:55 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-02-16 13:07:55 +0000 |
commit | e45bf9e429971efa2b918b1f7a79976c59d62b4f (patch) | |
tree | 1cf9197449e3a4a201083d40c563b2f1c9db8727 /x11-libs/gtkdatabox/gtkdatabox-0.9.1.1.ebuild | |
parent | Cleanup due bug #96436 (diff) | |
download | gentoo-2-e45bf9e429971efa2b918b1f7a79976c59d62b4f.tar.gz gentoo-2-e45bf9e429971efa2b918b1f7a79976c59d62b4f.tar.bz2 gentoo-2-e45bf9e429971efa2b918b1f7a79976c59d62b4f.zip |
Cleanup due bug #96436
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-libs/gtkdatabox/gtkdatabox-0.9.1.1.ebuild')
-rw-r--r-- | x11-libs/gtkdatabox/gtkdatabox-0.9.1.1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/x11-libs/gtkdatabox/gtkdatabox-0.9.1.1.ebuild b/x11-libs/gtkdatabox/gtkdatabox-0.9.1.1.ebuild deleted file mode 100644 index 31df6d6b26d7..000000000000 --- a/x11-libs/gtkdatabox/gtkdatabox-0.9.1.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkdatabox/gtkdatabox-0.9.1.1.ebuild,v 1.4 2010/12/16 18:42:07 pacho Exp $ - -EAPI="2" - -DESCRIPTION="Gtk+ Widgets for live display of large amounts of fluctuating numerical data" -HOMEPAGE="http://sourceforge.net/projects/gtkdatabox/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples +glade test" - -RDEPEND="x11-libs/gtk+:2 - glade? ( - dev-util/glade:3 - gnome-base/libglade - ) -" - -DEPEND=${RDEPEND} - -src_prepare() { - # Remove -D.*DISABLE_DEPRECATED cflags - find . -iname 'Makefile.am' -exec \ - sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die "sed 1 failed" - # 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 2 failed" -} - -src_configure() { - econf \ - --enable-libtool-lock \ - --disable-dependency-tracking \ - $(use_enable glade libglade) \ - $(use_enable glade) \ - $(use_enable doc gtk-doc) \ - $(use_enable test gtktest) -} - -src_install() { - emake DESTDIR="${D}" install || die "Installation Failed" - - dodoc AUTHORS ChangeLog README TODO || die "dodoc failed" - - if use examples; then - emake clean -C examples || die "Cleaning examples failed" - docinto examples - dodoc "${S}"/examples/* || die "Copy examples to doc failed." - fi -} |