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-0.8.0_rc4.ebuild
Date: Sat, 27 Jun 2009 12:20:16
Message-Id: E1MKWtC-00035o-FK@stork.gentoo.org
1 maekke 09/06/27 12:20:14
2
3 Modified: ChangeLog
4 Added: hugin-0.8.0_rc4.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc33/cvs/Linux i686)
8
9 Revision Changes Path
10 1.66 media-gfx/hugin/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.66&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/ChangeLog?rev=1.66&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/ChangeLog?r1=1.65&r2=1.66
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v
19 retrieving revision 1.65
20 retrieving revision 1.66
21 diff -u -r1.65 -r1.66
22 --- ChangeLog 19 Jun 2009 09:20:29 -0000 1.65
23 +++ ChangeLog 27 Jun 2009 12:20:14 -0000 1.66
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/hugin
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.65 2009/06/19 09:20:29 dev-zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/ChangeLog,v 1.66 2009/06/27 12:20:14 maekke Exp $
29 +
30 +*hugin-0.8.0_rc4 (27 Jun 2009)
31 +
32 + 27 Jun 2009; Markus Meier <maekke@g.o> +hugin-0.8.0_rc4.ebuild:
33 + version bump
34
35 19 Jun 2009; Tiziano Müller <dev-zero@g.o> hugin-0.8.0_rc3.ebuild,
36 +files/hugin-0.8.0_rc3-unset_lapack.patch:
37
38
39
40 1.1 media-gfx/hugin/hugin-0.8.0_rc4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/hugin-0.8.0_rc4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/hugin-0.8.0_rc4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: hugin-0.8.0_rc4.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-0.8.0_rc4.ebuild,v 1.1 2009/06/27 12:20:14 maekke Exp $
50
51 EAPI="2"
52 WX_GTK_VER="2.8"
53
54 inherit cmake-utils wxwidgets versionator
55
56 DESCRIPTION="GUI for the creation & processing of panoramic images"
57 HOMEPAGE="http://hugin.sf.net"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59 LICENSE="GPL-2 SIFT"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62
63 LANGS=" bg ca cs de en_GB es fr hu it ja ko nl pl pt_BR ru sk sl sv uk zh_CN zh_TW"
64 IUSE="lapack +sift $(echo ${LANGS//\ /\ linguas_})"
65
66 DEPEND="
67 app-arch/zip
68 || ( >=dev-libs/boost-1.34 =dev-libs/boost-1.33*[threads] )
69 >=media-gfx/enblend-3.0_p20080807
70 media-gfx/exiv2
71 media-libs/jpeg
72 >=media-libs/libpano13-2.9.14
73 media-libs/libpng
74 media-libs/openexr
75 media-libs/tiff
76 sys-libs/zlib
77 x11-libs/wxGTK:2.8
78 lapack? ( virtual/lapack )
79 sift? ( media-gfx/autopano-sift-C )"
80 RDEPEND="${DEPEND}"
81
82 S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
83 PATCHES=(
84 "${FILESDIR}"/${PN}-0.8.0_rc3-as-needed.patch
85 "${FILESDIR}"/${PN}-0.8.0_rc3-unset_lapack.patch
86 )
87
88 pkg_setup() {
89 DOCS="AUTHORS README TODO"
90 mycmakeargs="$(cmake-utils_use_enable lapack)"
91 }
92
93 src_install() {
94 cmake-utils_src_install
95
96 for lang in ${LANGS} ; do
97 case ${lang} in
98 ca) dir=ca_ES;;
99 cs) dir=cs_CZ;;
100 *) dir=${lang};;
101 esac
102 use linguas_${lang} || rm -r "${D}"/usr/share/locale/${dir}
103 done
104 }