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-2011.2.0.ebuild ChangeLog hugin-2010.0.0.ebuild hugin-2010.4.0.ebuild
Date: Sun, 02 Oct 2011 21:34:00
Message-Id: 20111002213348.13BCA2004B@flycatcher.gentoo.org
1 maekke 11/10/02 21:33:47
2
3 Modified: ChangeLog
4 Added: hugin-2011.2.0.ebuild
5 Removed: hugin-2010.0.0.ebuild hugin-2010.4.0.ebuild
6 Log:
7 version bump, remove old
8
9 (Portage version: 2.1.10.20/cvs/Linux i686)
10
11 Revision Changes Path
12 1.117 media-gfx/hugin/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.117&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.117&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.116&r2=1.117
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
21 retrieving revision 1.116
22 retrieving revision 1.117
23 diff -u -r1.116 -r1.117
24 --- ChangeLog 14 Sep 2011 18:54:43 -0000 1.116
25 +++ ChangeLog 2 Oct 2011 21:33:47 -0000 1.117
26 @@ -1,6 +1,13 @@
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.116 2011/09/14 18:54:43 nativemad Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.117 2011/10/02 21:33:47 maekke Exp $
31 +
32 +*hugin-2011.2.0 (02 Oct 2011)
33 +
34 + 02 Oct 2011; Markus Meier <maekke@g.o> -hugin-2010.0.0.ebuild,
35 + -files/hugin-2010.0.0_rc1-libpng14.patch, -hugin-2010.4.0.ebuild,
36 + +hugin-2011.2.0.ebuild:
37 + version bump, remove old
38
39 15 Sep 2011; Andreas Schuerch <nativemad@g.o> hugin-2011.0.0.ebuild:
40 x86 stable, Thanks JD, bug 379089
41
42
43
44 1.1 media-gfx/hugin/hugin-2011.2.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2011.2.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2011.2.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: hugin-2011.2.0.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2011.2.0.ebuild,v 1.1 2011/10/02 21:33:47 maekke Exp $
54
55 EAPI=3
56 WX_GTK_VER="2.8"
57 PYTHON_DEPEND="python? 2:2.6 3"
58
59 inherit python wxwidgets versionator cmake-utils
60
61 DESCRIPTION="GUI for the creation & processing of panoramic images"
62 HOMEPAGE="http://hugin.sf.net"
63 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
64 LICENSE="GPL-2 SIFT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86"
67
68 LANGS=" bg ca cs da de en_GB es fi fr hu it ja ko nl pl pt_BR ro ru sk sl sv uk zh_CN zh_TW"
69 IUSE="lapack python sift $(echo ${LANGS//\ /\ linguas_})"
70
71 CDEPEND="
72 !!dev-util/cocom
73 app-arch/zip
74 dev-cpp/tclap
75 >=dev-libs/boost-1.35.0-r5
76 dev-libs/zthread
77 >=media-gfx/enblend-4.0
78 media-gfx/exiv2
79 media-libs/freeglut
80 >=media-libs/libpano13-2.9.18
81 media-libs/libpng
82 media-libs/openexr
83 media-libs/tiff
84 sys-libs/zlib
85 virtual/jpeg
86 x11-libs/wxGTK:2.8[X,opengl,-odbc]
87 lapack? ( virtual/lapack )
88 sift? ( media-gfx/autopano-sift-C )"
89 RDEPEND="${CDEPEND}
90 media-libs/exiftool"
91 DEPEND="${CDEPEND}
92 dev-util/pkgconfig
93 python? ( >=dev-lang/swig-2.0.4 )"
94
95 S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
96
97 pkg_setup() {
98 DOCS="authors.txt README TODO"
99 mycmakeargs=(
100 $(cmake-utils_use_enable lapack LAPACK)
101 $(cmake-utils_use_build python HSI)
102 )
103 }
104
105 src_install() {
106 cmake-utils_src_install
107
108 for lang in ${LANGS} ; do
109 case ${lang} in
110 ca) dir=ca_ES;;
111 cs) dir=cs_CZ;;
112 *) dir=${lang};;
113 esac
114 use linguas_${lang} || rm -r "${D}"/usr/share/locale/${dir}
115 done
116 }