blob: 5fad440e9d41aaee794feb270375b55baa01759a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2011.4.0.ebuild,v 1.1 2011/12/18 22:22:03 maekke Exp $
EAPI=3
WX_GTK_VER="2.8"
PYTHON_DEPEND="python? 2:2.6 3"
inherit python wxwidgets versionator cmake-utils
DESCRIPTION="GUI for the creation & processing of panoramic images"
HOMEPAGE="http://hugin.sf.net"
SRC_URI="mirror://sourceforge/${PN}/${P/\.0_/}.tar.bz2"
LICENSE="GPL-2 SIFT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
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"
IUSE="lapack python sift $(echo ${LANGS//\ /\ linguas_})"
CDEPEND="
!!dev-util/cocom
app-arch/zip
dev-cpp/tclap
>=dev-libs/boost-1.35.0-r5
dev-libs/zthread
>=media-gfx/enblend-4.0
media-gfx/exiv2
media-libs/freeglut
>=media-libs/libpano13-2.9.18
media-libs/libpng
media-libs/openexr
media-libs/tiff
sys-libs/zlib
virtual/jpeg
x11-libs/wxGTK:2.8[X,opengl,-odbc]
lapack? ( virtual/lapack )
sift? ( media-gfx/autopano-sift-C )"
RDEPEND="${CDEPEND}
media-libs/exiftool"
DEPEND="${CDEPEND}
dev-util/pkgconfig
python? ( >=dev-lang/swig-2.0.4 )"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
pkg_setup() {
DOCS="authors.txt README TODO"
mycmakeargs=(
$(cmake-utils_use_enable lapack LAPACK)
$(cmake-utils_use_build python HSI)
)
}
src_install() {
cmake-utils_src_install
for lang in ${LANGS} ; do
case ${lang} in
ca) dir=ca_ES;;
cs) dir=cs_CZ;;
*) dir=${lang};;
esac
use linguas_${lang} || rm -r "${D}"/usr/share/locale/${dir}
done
}
|