Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/hugin: ChangeLog hugin-2011.0.0_rc1.ebuild
Date: Wed, 18 May 2011 06:42:06
Message-Id: 20110518064154.6A7CD20054@flycatcher.gentoo.org
1 radhermit 11/05/18 06:41:54
2
3 Modified: ChangeLog
4 Added: hugin-2011.0.0_rc1.ebuild
5 Log:
6 Version bump to release candidate. Remove old post install message, bump to EAPI 4, apply patch for libpng-1.5 (bug #355885).
7
8 (Portage version: 2.2.0_alpha33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.109 media-gfx/hugin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.109&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.109&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.108&r2=1.109
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
20 retrieving revision 1.108
21 retrieving revision 1.109
22 diff -u -r1.108 -r1.109
23 --- ChangeLog 13 Feb 2011 11:03:32 -0000 1.108
24 +++ ChangeLog 18 May 2011 06:41:54 -0000 1.109
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-gfx/hugin
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.108 2011/02/13 11:03:32 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.109 2011/05/18 06:41:54 radhermit Exp $
30 +
31 +*hugin-2011.0.0_rc1 (18 May 2011)
32 +
33 + 18 May 2011; Tim Harder <radhermit@g.o> +hugin-2011.0.0_rc1.ebuild,
34 + +files/hugin-2011.0.0_rc1-libpng15.patch:
35 + Version bump to release candidate. Remove old post install message, bump to
36 + EAPI 4, apply patch for libpng-1.5 (bug #355885).
37
38 13 Feb 2011; Tim Harder <radhermit@g.o> hugin-2010.0.0.ebuild,
39 hugin-2010.2.0.ebuild, hugin-2010.4.0.ebuild:
40
41
42
43 1.1 media-gfx/hugin/hugin-2011.0.0_rc1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2011.0.0_rc1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hugin/hugin-2011.0.0_rc1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hugin-2011.0.0_rc1.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_rc1.ebuild,v 1.1 2011/05/18 06:41:54 radhermit 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 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-3.0_p20080807
74 media-gfx/exiv2
75 media-libs/freeglut
76 >=media-libs/libpano13-2.9.17
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}-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 }