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.2.0_rc2.ebuild
Date: Thu, 30 Sep 2010 19:11:02
Message-Id: 20100930191058.E543D20051@flycatcher.gentoo.org
1 maekke 10/09/30 19:10:58
2
3 Modified: ChangeLog
4 Added: hugin-2010.2.0_rc2.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2_rc86/cvs/Linux i686)
9
10 Revision Changes Path
11 1.98 media-gfx/hugin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.98&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.98&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.97&r2=1.98
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
20 retrieving revision 1.97
21 retrieving revision 1.98
22 diff -u -r1.97 -r1.98
23 --- ChangeLog 21 Sep 2010 05:58:36 -0000 1.97
24 +++ ChangeLog 30 Sep 2010 19:10:58 -0000 1.98
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.97 2010/09/21 05:58:36 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.98 2010/09/30 19:10:58 maekke Exp $
30 +
31 +*hugin-2010.2.0_rc2 (30 Sep 2010)
32 +
33 + 30 Sep 2010; Markus Meier <maekke@g.o> +hugin-2010.2.0_rc2.ebuild:
34 + version bump
35
36 *hugin-2010.2.0_rc1 (21 Sep 2010)
37
38
39
40
41 1.1 media-gfx/hugin/hugin-2010.2.0_rc2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2010.2.0_rc2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2010.2.0_rc2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hugin-2010.2.0_rc2.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.2.0_rc2.ebuild,v 1.1 2010/09/30 19:10:58 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.gz"
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/jpeg:0
74 >=media-libs/libpano13-2.9.17
75 media-libs/libpng
76 media-libs/openexr
77 media-libs/tiff
78 sys-libs/zlib
79 media-libs/freeglut
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 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 }