Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/hugin: hugin-2009.2.0.ebuild ChangeLog hugin-2009.2.0_beta3.ebuild
Date: Wed, 30 Sep 2009 05:53:00
Message-Id: E1Mss7W-00034H-Of@stork.gentoo.org
1 maekke 09/09/30 05:52:58
2
3 Modified: ChangeLog
4 Added: hugin-2009.2.0.ebuild
5 Removed: hugin-2009.2.0_beta3.ebuild
6 Log:
7 version bump to final 2009.02.0 release
8 (Portage version: 2.2_rc42/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.73 media-gfx/hugin/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.73&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.73&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.72&r2=1.73
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
20 retrieving revision 1.72
21 retrieving revision 1.73
22 diff -u -r1.72 -r1.73
23 --- ChangeLog 29 Sep 2009 09:22:54 -0000 1.72
24 +++ ChangeLog 30 Sep 2009 05:52:58 -0000 1.73
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-gfx/hugin
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.72 2009/09/29 09:22:54 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.73 2009/09/30 05:52:58 maekke Exp $
30 +
31 +*hugin-2009.2.0 (30 Sep 2009)
32 +
33 + 30 Sep 2009; Markus Meier <maekke@g.o>
34 + -hugin-2009.2.0_beta3.ebuild, +hugin-2009.2.0.ebuild,
35 + -files/hugin-2009.2.0_beta3-asneeded.patch:
36 + version bump to final 2009.02.0 release
37
38 29 Sep 2009; Markus Meier <maekke@g.o> hugin-0.7.0.ebuild,
39 hugin-0.8.0.ebuild, hugin-2009.2.0_beta3.ebuild:
40
41
42
43 1.1 media-gfx/hugin/hugin-2009.2.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/hugin-2009.2.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/hugin-2009.2.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hugin-2009.2.0.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2009.2.0.ebuild,v 1.1 2009/09/30 05:52:58 maekke Exp $
53
54 EAPI="2"
55 WX_GTK_VER="2.8"
56
57 inherit cmake-utils wxwidgets versionator
58
59 DESCRIPTION="GUI for the creation & processing of panoramic images"
60 HOMEPAGE="http://hugin.sf.net"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
62 LICENSE="GPL-2 SIFT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65
66 LANGS=" bg ca cs de en_GB es fr hu it ja ko nl pl pt_BR ru sk sl sv uk zh_CN zh_TW"
67 IUSE="lapack +sift $(echo ${LANGS//\ /\ linguas_})"
68
69 DEPEND="
70 !!dev-util/cocom
71 app-arch/zip
72 >=dev-libs/boost-1.35.0-r5
73 >=media-gfx/enblend-3.0_p20080807
74 media-gfx/exiv2
75 media-libs/jpeg
76 >=media-libs/libpano13-2.9.14
77 media-libs/libpng
78 media-libs/openexr
79 media-libs/tiff
80 sys-libs/zlib
81 x11-libs/wxGTK:2.8[opengl,-odbc]
82 lapack? ( virtual/lapack )
83 sift? ( media-gfx/autopano-sift-C )"
84 RDEPEND="${DEPEND}
85 media-libs/exiftool"
86
87 S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
88
89 pkg_setup() {
90 DOCS="AUTHORS README TODO"
91 mycmakeargs="$(cmake-utils_use_enable lapack)"
92 }
93
94 src_install() {
95 cmake-utils_src_install
96
97 for lang in ${LANGS} ; do
98 case ${lang} in
99 ca) dir=ca_ES;;
100 cs) dir=cs_CZ;;
101 *) dir=${lang};;
102 esac
103 use linguas_${lang} || rm -r "${D}"/usr/share/locale/${dir}
104 done
105 }