Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/autopano-sift-C: autopano-sift-C-2.5.1.ebuild ChangeLog
Date: Wed, 28 Aug 2013 16:52:01
Message-Id: 20130828165157.A89DE2004E@flycatcher.gentoo.org
1 ssuominen 13/08/28 16:51:57
2
3 Modified: autopano-sift-C-2.5.1.ebuild ChangeLog
4 Log:
5 Link against -lm because the ScaleSpace.c (part of internal libsift.a library) is using the exp() function wrt #472150 by Jason Mours
6
7 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.7 media-gfx/autopano-sift-C/autopano-sift-C-2.5.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/autopano-sift-C/autopano-sift-C-2.5.1.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/autopano-sift-C/autopano-sift-C-2.5.1.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/autopano-sift-C/autopano-sift-C-2.5.1.ebuild?r1=1.6&r2=1.7
15
16 Index: autopano-sift-C-2.5.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/autopano-sift-C/autopano-sift-C-2.5.1.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- autopano-sift-C-2.5.1.ebuild 1 Jun 2013 14:05:57 -0000 1.6
23 +++ autopano-sift-C-2.5.1.ebuild 28 Aug 2013 16:51:57 -0000 1.7
24 @@ -1,9 +1,9 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/autopano-sift-C/autopano-sift-C-2.5.1.ebuild,v 1.6 2013/06/01 14:05:57 creffett Exp $
28 -EAPI=5
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/autopano-sift-C/autopano-sift-C-2.5.1.ebuild,v 1.7 2013/08/28 16:51:57 ssuominen Exp $
30
31 -inherit cmake-utils versionator
32 +EAPI=5
33 +inherit cmake-utils eutils versionator
34
35 DESCRIPTION="SIFT algorithm for automatic panorama creation in C"
36 HOMEPAGE="http://hugin.sourceforge.net/ http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
37 @@ -14,13 +14,18 @@
38 KEYWORDS="amd64 ppc x86"
39 IUSE=""
40
41 -S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
42 +S=${WORKDIR}/${PN}-"$(get_version_component_range 1-3)"
43
44 -DEPEND="!media-gfx/autopano-sift
45 +RDEPEND="!media-gfx/autopano-sift
46 dev-libs/libxml2
47 media-libs/libpano13
48 - media-libs/libpng
49 - media-libs/tiff
50 + media-libs/libpng:0=
51 + media-libs/tiff:0=
52 sys-libs/zlib
53 - virtual/jpeg"
54 -RDEPEND="${DEPEND}"
55 + virtual/jpeg:0"
56 +DEPEND="${RDEPEND}"
57 +
58 +src_prepare() {
59 + epatch "${FILESDIR}"/${P}-lm.patch
60 + epatch_user
61 +}
62
63
64
65 1.15 media-gfx/autopano-sift-C/ChangeLog
66
67 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/autopano-sift-C/ChangeLog?rev=1.15&view=markup
68 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/autopano-sift-C/ChangeLog?rev=1.15&content-type=text/plain
69 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/autopano-sift-C/ChangeLog?r1=1.14&r2=1.15
70
71 Index: ChangeLog
72 ===================================================================
73 RCS file: /var/cvsroot/gentoo-x86/media-gfx/autopano-sift-C/ChangeLog,v
74 retrieving revision 1.14
75 retrieving revision 1.15
76 diff -u -r1.14 -r1.15
77 --- ChangeLog 1 Jun 2013 14:05:57 -0000 1.14
78 +++ ChangeLog 28 Aug 2013 16:51:57 -0000 1.15
79 @@ -1,6 +1,11 @@
80 # ChangeLog for media-gfx/autopano-sift-C
81 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
82 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/autopano-sift-C/ChangeLog,v 1.14 2013/06/01 14:05:57 creffett Exp $
83 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/autopano-sift-C/ChangeLog,v 1.15 2013/08/28 16:51:57 ssuominen Exp $
84 +
85 + 28 Aug 2013; Samuli Suominen <ssuominen@g.o>
86 + +files/autopano-sift-C-2.5.1-lm.patch, autopano-sift-C-2.5.1.ebuild:
87 + Link against -lm because the ScaleSpace.c (part of internal libsift.a library)
88 + is using the exp() function wrt #472150 by Jason Mours
89
90 01 Jun 2013; Chris Reffett <creffett@g.o> autopano-sift-C-2.5.1.ebuild:
91 EAPI bump wrt bug 460572