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_rc3.ebuild
Date: Tue, 28 Dec 2010 16:43:05
Message-Id: 20101228164255.9DBDA20054@flycatcher.gentoo.org
1 maekke 10/12/28 16:42:55
2
3 Modified: ChangeLog
4 Added: hugin-2010.4.0_rc3.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.9.26/cvs/Linux i686)
9
10 Revision Changes Path
11 1.106 media-gfx/hugin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.106&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.106&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.105&r2=1.106
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
20 retrieving revision 1.105
21 retrieving revision 1.106
22 diff -u -r1.105 -r1.106
23 --- ChangeLog 25 Dec 2010 12:54:53 -0000 1.105
24 +++ ChangeLog 28 Dec 2010 16:42:55 -0000 1.106
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.105 2010/12/25 12:54:53 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.106 2010/12/28 16:42:55 maekke Exp $
30 +
31 +*hugin-2010.4.0_rc3 (28 Dec 2010)
32 +
33 + 28 Dec 2010; Markus Meier <maekke@g.o> +hugin-2010.4.0_rc3.ebuild:
34 + version bump
35
36 *hugin-2010.4.0_rc1 (25 Dec 2010)
37
38
39
40
41 1.1 media-gfx/hugin/hugin-2010.4.0_rc3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2010.4.0_rc3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2010.4.0_rc3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hugin-2010.4.0_rc3.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_rc3.ebuild,v 1.1 2010/12/28 16:42:55 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}.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 }