diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2013-01-20 16:55:31 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2013-01-20 16:55:31 +0000 |
commit | fa33a12db3dc9af619ce07f85dd7340003ae0824 (patch) | |
tree | 92fd85b80c6e6bc5419543d0c85e873183bee170 /media-gfx | |
parent | remove mask on colord/packagekit use (diff) | |
download | gentoo-2-fa33a12db3dc9af619ce07f85dd7340003ae0824.tar.gz gentoo-2-fa33a12db3dc9af619ce07f85dd7340003ae0824.tar.bz2 gentoo-2-fa33a12db3dc9af619ce07f85dd7340003ae0824.zip |
Remove old version which doesn't work any longer (bug #436818).
(Portage version: 2.1.11.40/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/engauge/ChangeLog | 6 | ||||
-rw-r--r-- | media-gfx/engauge/engauge-4.1-r1.ebuild | 55 | ||||
-rw-r--r-- | media-gfx/engauge/files/engauge-5.1-gcc47.patch | 19 | ||||
-rw-r--r-- | media-gfx/engauge/files/engauge-5.1-qreal-double.patch | 31 |
4 files changed, 5 insertions, 106 deletions
diff --git a/media-gfx/engauge/ChangeLog b/media-gfx/engauge/ChangeLog index 1be9ea27db78..27176242b88f 100644 --- a/media-gfx/engauge/ChangeLog +++ b/media-gfx/engauge/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/engauge # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/engauge/ChangeLog,v 1.12 2013/01/20 16:48:16 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/engauge/ChangeLog,v 1.13 2013/01/20 16:55:30 calchan Exp $ + + 20 Jan 2013; Denis Dupeyron <calchan@gentoo.org> -engauge-4.1-r1.ebuild, + -files/engauge-5.1-gcc47.patch, -files/engauge-5.1-qreal-double.patch: + Remove old version which doesn't work any longer (bug #436818). *engauge-5.1 (20 Jan 2013) diff --git a/media-gfx/engauge/engauge-4.1-r1.ebuild b/media-gfx/engauge/engauge-4.1-r1.ebuild deleted file mode 100644 index 0a47812814e7..000000000000 --- a/media-gfx/engauge/engauge-4.1-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/engauge/engauge-4.1-r1.ebuild,v 1.5 2012/10/07 11:54:41 pacho Exp $ - -EAPI=4 -inherit versionator qt4-r2 eutils - -DESCRIPTION="Convert an image file showing a graph or map into numbers" -HOMEPAGE="http://digitizer.sourceforge.net/" -SRC_URI="mirror://sourceforge/digitizer/digit-src-$(replace_version_separator . _).tar.gz -> ${P}.tar.gz - http://dev.gentoo.org/~calchan/distfiles/${P}_qt4.patch.xz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples" - -RDEPEND="x11-libs/qt-qt3support:4 - sci-libs/fftw:3.0 - x11-libs/libXft" -DEPEND="${RDEPEND} - app-arch/xz-utils" - -S="${WORKDIR}/${PN}" - -src_prepare() { - epatch "${DISTDIR}"/${P}_qt4.patch.xz - - # Some Debian patches to fix compilation problems - epatch "${FILESDIR}/${PN}-5.1-gcc47.patch" - epatch "${FILESDIR}/${PN}-5.1-qreal-double.patch" - - # Some patching and using the DEBIAN_PACKAGE ifdef is necessary to make sure the - # documentation is looked for in the proper directory - sed -i -e "s:/usr/share/doc/engauge-digitizer-doc:${ROOT}/usr/share/doc/${PF}:" \ - src/digitmain.cpp || die "sed failed" - sed -i -e '/unix {/a DEFINES += DEBIAN_PACKAGE' \ - digitizer.pro || die "sed failed" -} - -src_configure() { - eqmake4 digitizer.pro -} - -src_install() { - dobin bin/engauge - newicon src/img/lo32-app-digitizer.png "${PN}.png" - make_desktop_entry engauge "Engauge Digitizer" ${PN} Graphics - insinto /usr/share/doc/${PF} - if use doc; then - doins -r usermanual - fi - if use examples; then - doins -r samples - fi -} diff --git a/media-gfx/engauge/files/engauge-5.1-gcc47.patch b/media-gfx/engauge/files/engauge-5.1-gcc47.patch deleted file mode 100644 index 411cea829ae9..000000000000 --- a/media-gfx/engauge/files/engauge-5.1-gcc47.patch +++ /dev/null @@ -1,19 +0,0 @@ -Description: Add missing header include - In gcc 4.7, many of the standard C++ library include files have been - edited to no longer include <unistd.h> to remove namespace pollution. - The missing include is added to fix FTBFS with gcc 4.7. -Author: Tobias Winchen <winchen@physik.rwth-aachen.de> -Last-Update: 2012-05-17 - - ---- a/src/pointmatch.cpp -+++ b/src/pointmatch.cpp -@@ -25,6 +25,7 @@ - - #include <math.h> - #include <stdlib.h> -+#include <unistd.h> - - #include "main.h" - #include "mmsubs.h" - diff --git a/media-gfx/engauge/files/engauge-5.1-qreal-double.patch b/media-gfx/engauge/files/engauge-5.1-qreal-double.patch deleted file mode 100644 index 73504559fe18..000000000000 --- a/media-gfx/engauge/files/engauge-5.1-qreal-double.patch +++ /dev/null @@ -1,31 +0,0 @@ -Description: Fix issues with double VS qreal - The code was attempting to pass double* to a function expecting qreal* - resulting in compile errors on arm (where qreal is defined as float) - this patch changes a couple of variable definitions so the types match - up. -Origin: http://bugs.debian.org/656943 -Author: Peter Green <plugwash@p10link.net> -Reviewed-By: Tobias Winchen <winchen@physik.rwth-aachen.de> -Last-Update: 2012-03-21 - - ---- engauge-digitizer-5.0.orig/src/digitview.cpp -+++ engauge-digitizer-5.0/src/digitview.cpp -@@ -288,7 +288,7 @@ void DigitView::keyReleaseEvent(QKeyEven - - QPoint DigitView::convertZoom(QPoint p, bool to) - { -- double x, y; -+ qreal x, y; - if (to) - worldMatrix().map((double) p.x(), (double) p.y(), &x, &y); - else -@@ -299,7 +299,7 @@ QPoint DigitView::convertZoom(QPoint p, - - QRect DigitView::convertZoom(QRect r, bool to) - { -- double xTL, yTL, xBR, yBR; -+ qreal xTL, yTL, xBR, yBR; - if (to) - { - worldMatrix().map((double) r.left(), (double) r.top(), &xTL, &yTL); |