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