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-2011.0.0.ebuild hugin-2011.0.0_rc1.ebuild
Date: Sun, 29 May 2011 21:07:12
Message-Id: 20110529210701.C424C20054@flycatcher.gentoo.org
1 maekke 11/05/29 21:07:01
2
3 Modified: ChangeLog
4 Added: hugin-2011.0.0.ebuild
5 Removed: hugin-2011.0.0_rc1.ebuild
6 Log:
7 version bump
8
9 (Portage version: 2.1.9.49/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.112 media-gfx/hugin/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.112&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.112&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.111&r2=1.112
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
21 retrieving revision 1.111
22 retrieving revision 1.112
23 diff -u -r1.111 -r1.112
24 --- ChangeLog 20 May 2011 19:19:23 -0000 1.111
25 +++ ChangeLog 29 May 2011 21:07:01 -0000 1.112
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-gfx/hugin
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.111 2011/05/20 19:19:23 maekke Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.112 2011/05/29 21:07:01 maekke Exp $
31 +
32 +*hugin-2011.0.0 (29 May 2011)
33 +
34 + 29 May 2011; Markus Meier <maekke@g.o> -hugin-2011.0.0_rc1.ebuild,
35 + +hugin-2011.0.0.ebuild:
36 + version bump
37
38 20 May 2011; Markus Meier <maekke@g.o> hugin-2011.0.0_rc1.ebuild:
39 add ro to LANGS, update enblend version
40
41
42
43 1.1 media-gfx/hugin/hugin-2011.0.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2011.0.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2011.0.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hugin-2011.0.0.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2011.0.0.ebuild,v 1.1 2011/05/29 21:07:01 maekke Exp $
53
54 EAPI=4
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.bz2"
62 LICENSE="GPL-2 SIFT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65
66 LANGS=" bg ca cs de en_GB es fi fr hu it ja ko nl pl pt_BR ro ru sk sl sv uk zh_CN zh_TW"
67 IUSE="lapack sift $(echo ${LANGS//\ /\ linguas_})"
68
69 CDEPEND="
70 !!dev-util/cocom
71 app-arch/zip
72 >=dev-libs/boost-1.35.0-r5
73 >=media-gfx/enblend-4.0
74 media-gfx/exiv2
75 media-libs/freeglut
76 >=media-libs/libpano13-2.9.18
77 media-libs/libpng
78 media-libs/openexr
79 media-libs/tiff
80 sys-libs/zlib
81 virtual/jpeg
82 x11-libs/wxGTK:2.8[X,opengl,-odbc]
83 lapack? ( virtual/lapack )
84 sift? ( media-gfx/autopano-sift-C )"
85 RDEPEND="${CDEPEND}
86 media-libs/exiftool"
87 DEPEND="${CDEPEND}
88 dev-util/pkgconfig"
89
90 S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
91
92 PATCHES=( "${FILESDIR}"/${P}_rc1-libpng15.patch )
93
94 pkg_setup() {
95 DOCS="authors.txt README TODO"
96 mycmakeargs=( $(cmake-utils_use_enable lapack LAPACK) )
97 }
98
99 src_install() {
100 cmake-utils_src_install
101
102 for lang in ${LANGS} ; do
103 case ${lang} in
104 ca) dir=ca_ES;;
105 cs) dir=cs_CZ;;
106 *) dir=${lang};;
107 esac
108 use linguas_${lang} || rm -r "${D}"/usr/share/locale/${dir}
109 done
110 }