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-2010.4.0.ebuild ChangeLog hugin-2010.4.0_rc3.ebuild hugin-2010.4.0_beta1.ebuild hugin-2010.4.0_beta2.ebuild hugin-2010.4.0_rc1.ebuild
Date: Sat, 01 Jan 2011 23:24:21
Message-Id: 20110101232411.7AAC420054@flycatcher.gentoo.org
1 maekke 11/01/01 23:24:11
2
3 Modified: ChangeLog
4 Added: hugin-2010.4.0.ebuild
5 Removed: hugin-2010.4.0_rc3.ebuild
6 hugin-2010.4.0_beta1.ebuild
7 hugin-2010.4.0_beta2.ebuild
8 hugin-2010.4.0_rc1.ebuild
9 Log:
10 version bump to 2010.4.0 final, remove beta/rc releases
11
12 (Portage version: 2.1.9.27/cvs/Linux i686)
13
14 Revision Changes Path
15 1.107 media-gfx/hugin/ChangeLog
16
17 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.107&view=markup
18 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.107&content-type=text/plain
19 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.106&r2=1.107
20
21 Index: ChangeLog
22 ===================================================================
23 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
24 retrieving revision 1.106
25 retrieving revision 1.107
26 diff -u -r1.106 -r1.107
27 --- ChangeLog 28 Dec 2010 16:42:55 -0000 1.106
28 +++ ChangeLog 1 Jan 2011 23:24:11 -0000 1.107
29 @@ -1,6 +1,13 @@
30 # ChangeLog for media-gfx/hugin
31 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
32 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.106 2010/12/28 16:42:55 maekke Exp $
33 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
34 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.107 2011/01/01 23:24:11 maekke Exp $
35 +
36 +*hugin-2010.4.0 (01 Jan 2011)
37 +
38 + 01 Jan 2011; Markus Meier <maekke@g.o> -hugin-2010.4.0_beta1.ebuild,
39 + -hugin-2010.4.0_beta2.ebuild, -hugin-2010.4.0_rc1.ebuild,
40 + -hugin-2010.4.0_rc3.ebuild, +hugin-2010.4.0.ebuild:
41 + version bump to 2010.4.0 final, remove beta/rc releases
42
43 *hugin-2010.4.0_rc3 (28 Dec 2010)
44
45
46
47
48 1.1 media-gfx/hugin/hugin-2010.4.0.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2010.4.0.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2010.4.0.ebuild?rev=1.1&content-type=text/plain
52
53 Index: hugin-2010.4.0.ebuild
54 ===================================================================
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2010.4.0.ebuild,v 1.1 2011/01/01 23:24:11 maekke Exp $
58
59 EAPI=2
60 WX_GTK_VER="2.8"
61
62 inherit cmake-utils wxwidgets versionator
63
64 DESCRIPTION="GUI for the creation & processing of panoramic images"
65 HOMEPAGE="http://hugin.sf.net"
66 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
67 LICENSE="GPL-2 SIFT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~x86"
70
71 LANGS=" bg ca cs de en_GB es fi fr hu it ja ko nl pl pt_BR ru sk sl sv uk zh_CN zh_TW"
72 IUSE="lapack sift $(echo ${LANGS//\ /\ linguas_})"
73
74 CDEPEND="
75 !!dev-util/cocom
76 app-arch/zip
77 >=dev-libs/boost-1.35.0-r5
78 >=media-gfx/enblend-3.0_p20080807
79 media-gfx/exiv2
80 media-libs/freeglut
81 >=media-libs/libpano13-2.9.17
82 media-libs/libpng
83 media-libs/openexr
84 media-libs/tiff
85 sys-libs/zlib
86 virtual/jpeg
87 x11-libs/wxGTK:2.8[opengl,-odbc]
88 lapack? ( virtual/lapack )
89 sift? ( media-gfx/autopano-sift-C )"
90 RDEPEND="${CDEPEND}
91 media-libs/exiftool"
92 DEPEND="${CDEPEND}
93 dev-util/pkgconfig"
94
95 S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
96
97 pkg_setup() {
98 DOCS="authors.txt README TODO"
99 mycmakeargs=( $(cmake-utils_use_enable lapack LAPACK) )
100 }
101
102 src_install() {
103 cmake-utils_src_install
104
105 for lang in ${LANGS} ; do
106 case ${lang} in
107 ca) dir=ca_ES;;
108 cs) dir=cs_CZ;;
109 *) dir=${lang};;
110 esac
111 use linguas_${lang} || rm -r "${D}"/usr/share/locale/${dir}
112 done
113 }
114
115 pkg_postinst() {
116 elog "Please note that the sift USE-flag has been disabled by default"
117 elog "as hugin ships its own control point generator with 2010.4"
118 }