Gentoo Archives: gentoo-commits

From: "Denis Dupeyron (calchan)" <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/engauge: ChangeLog engauge-5.2.ebuild
Date: Wed, 05 Feb 2014 21:58:49
Message-Id: 20140205215843.793B42004C@flycatcher.gentoo.org
1 calchan 14/02/05 21:58:43
2
3 Modified: ChangeLog
4 Added: engauge-5.2.ebuild
5 Log:
6 Version bump, thanks to Dominique Michel (bug #491118).
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.16 media-gfx/engauge/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/engauge/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/engauge/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/engauge/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/engauge/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 17 Jul 2013 04:27:15 -0000 1.15
24 +++ ChangeLog 5 Feb 2014 21:58:43 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/engauge
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/engauge/ChangeLog,v 1.15 2013/07/17 04:27:15 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/engauge/ChangeLog,v 1.16 2014/02/05 21:58:43 calchan Exp $
31 +
32 +*engauge-5.2 (05 Feb 2014)
33 +
34 + 05 Feb 2014; Denis Dupeyron <calchan@g.o> +engauge-5.2.ebuild:
35 + Version bump, thanks to Dominique Michel (bug #491118).
36
37 17 Jul 2013; Patrick Lauer <patrick@g.o> engauge-5.1.ebuild:
38 Fixing qtgui deps for qt-4.8.5
39
40
41
42 1.1 media-gfx/engauge/engauge-5.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/engauge/engauge-5.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/engauge/engauge-5.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: engauge-5.2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/engauge/engauge-5.2.ebuild,v 1.1 2014/02/05 21:58:43 calchan Exp $
52
53 EAPI=4
54
55 inherit versionator qt4-r2 eutils
56
57 DESCRIPTION="Convert an image file showing a graph or map into numbers"
58 HOMEPAGE="http://digitizer.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/digitizer/${PN}_${PV}.tgz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc examples"
65
66 RDEPEND="dev-qt/qt3support:4
67 dev-qt/qtgui:4[gif(+)]
68 sci-libs/fftw:3.0
69 x11-libs/libXft"
70 DEPEND="${RDEPEND}"
71
72 src_prepare() {
73 # Some patching and using the DEBIAN_PACKAGE ifdef is necessary to make sure the
74 # documentation is looked for in the proper directory
75 sed -i -e "s:/usr/share/doc/engauge-digitizer-doc/html:${ROOT}/usr/share/doc/${PF}/usermanual:" \
76 src/digitmain.cpp || die "sed failed"
77 sed -i -e '/unix {/a DEFINES += DEBIAN_PACKAGE' \
78 digitizer.pro || die "sed failed"
79 }
80
81 src_configure() {
82 eqmake4 digitizer.pro
83 }
84
85 src_install() {
86 dobin bin/engauge
87 newicon src/img/lo32-app-digitizer.png "${PN}.png"
88 make_desktop_entry engauge "Engauge Digitizer" ${PN} Graphics
89 insinto /usr/share/doc/${PF}
90 if use doc; then
91 doins -r usermanual || die "install documentation failed"
92 fi
93 if use examples; then
94 doins -r samples || die "install examples failed"
95 fi
96 }