public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Markus Meier" <maekke@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/hugin/
Date: Sun, 28 Jan 2018 20:41:31 +0000 (UTC)	[thread overview]
Message-ID: <1517171905.b0618cdaff22d351db5c387976ac1f7a46d6ef5e.maekke@gentoo> (raw)

commit:     b0618cdaff22d351db5c387976ac1f7a46d6ef5e
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 28 20:28:21 2018 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sun Jan 28 20:38:25 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0618cda

media-gfx/hugin: version bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/hugin/Manifest                |  1 +
 media-gfx/hugin/hugin-2018.0_rc2.ebuild | 89 +++++++++++++++++++++++++++++++++
 2 files changed, 90 insertions(+)

diff --git a/media-gfx/hugin/Manifest b/media-gfx/hugin/Manifest
index a0fa04ab92b..f25e50664a5 100644
--- a/media-gfx/hugin/Manifest
+++ b/media-gfx/hugin/Manifest
@@ -1,2 +1,3 @@
 DIST hugin-2016.2.0.tar.bz2 10386216 BLAKE2B 8437a360880903fac33be7dc12fcdff7fbd16b15153de32e127bdc2b5fe5a47e9ebefe8bc4fb088ba2b818743b8bee9348560aaeb53781bfd0eeb57ec1adbe0b SHA512 9c652e685d0135afef6418bdf5fce39cec8ef1ec0dbe3a325151957c91495db0a2a3171ee04a28955a638493913c1bc800a90c37347ad17612584646c8a65510
 DIST hugin-2017.0.tar.bz2 9803272 BLAKE2B fa7475347f6b1b561132d5370172fee410afd4f8b15c2c5d7d356023716d15cdcc5ecb8a13d743ce13f3c15ebb7f4b42f0e9653b9f94e752d5e6dea3ecef05b7 SHA512 bfd39135119fddb559ecec220da36a4c15d96bda7f93e738d8815aafca94685ba879239202e2cc81c87787188ee3b1b6dc5cbe8014aa12e2f95d654591dc1969
+DIST hugin-2018.0rc2.tar.bz2 9838518 BLAKE2B dc6d786e4e6a298d4dd4e48b2c42f9c9c297b4c431fbc00fa9090f129a4633f599e222402aef1f2a467aa9b498d356f3bbaca9548954cf697d331950afa6693a SHA512 30061f4af695137f349526272e8c3c2f1f6a167305acb32466a30629c46dabea3818bc2c3a77b6102fcb67aa390a803cdc5ba8d8a2ecc6065f88726392529cbc

diff --git a/media-gfx/hugin/hugin-2018.0_rc2.ebuild b/media-gfx/hugin/hugin-2018.0_rc2.ebuild
new file mode 100644
index 00000000000..33d44b9ffac
--- /dev/null
+++ b/media-gfx/hugin/hugin-2018.0_rc2.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+WX_GTK_VER="3.0"
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit python-single-r1 wxwidgets versionator cmake-utils
+
+DESCRIPTION="GUI for the creation & processing of panoramic images"
+HOMEPAGE="http://hugin.sf.net"
+SRC_URI="mirror://sourceforge/${PN}/${P/_/}.tar.bz2"
+
+LICENSE="GPL-2 SIFT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+LANGS=" ca ca-valencia cs da de en-GB es eu fi fr hu it ja nl pl pt-BR ro ru sk sv zh-CN zh-TW"
+IUSE="debug lapack python sift $(echo ${LANGS//\ /\ l10n_})"
+
+CDEPEND="
+	!!dev-util/cocom
+	dev-db/sqlite:3
+	dev-libs/boost:=
+	dev-libs/zthread
+	>=media-gfx/enblend-4.0
+	media-gfx/exiv2:=
+	media-libs/freeglut
+	media-libs/glew:=
+	>=media-libs/libpano13-2.9.19_beta1:0=
+	media-libs/libpng:0=
+	media-libs/openexr:=
+	media-libs/tiff:0
+	>=media-libs/vigra-1.11.0[openexr]
+	sci-libs/fftw:3.0=
+	sci-libs/flann
+	sys-libs/zlib
+	virtual/glu
+	virtual/jpeg:0
+	virtual/opengl
+	x11-libs/wxGTK:3.0=[X,opengl]
+	lapack? ( virtual/blas virtual/lapack )
+	python? ( ${PYTHON_DEPS} )
+	sift? ( media-gfx/autopano-sift-C )"
+RDEPEND="${CDEPEND}
+	media-libs/exiftool"
+DEPEND="${CDEPEND}
+	dev-cpp/tclap
+	sys-devel/gettext
+	virtual/pkgconfig
+	python? ( >=dev-lang/swig-2.0.4 )"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DOCS=( authors.txt README TODO )
+
+S=${WORKDIR}/${PN}-$(get_version_component_range 1-2).0
+
+pkg_setup() {
+	use python && python-single-r1_pkg_setup
+	setup-wxwidgets
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_HSI=$(usex python)
+		-DENABLE_LAPACK=$(usex lapack)
+	)
+	cmake-utils_src_configure
+}
+
+src_install() {
+	cmake-utils_src_install
+	use python && python_optimize
+
+	local lang
+	for lang in ${LANGS} ; do
+		case ${lang} in
+			ca) dir=ca_ES;;
+			ca-valencia) dir=ca_ES@valencia;;
+			cs) dir=cs_CZ;;
+			*) dir=${lang/-/_};;
+		esac
+		if ! use l10n_${lang} ; then
+			rm -r "${ED%/}"/usr/share/locale/${dir} || die
+		fi
+	done
+}


             reply	other threads:[~2018-01-28 20:41 UTC|newest]

Thread overview: 80+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-28 20:41 Markus Meier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-22 20:44 [gentoo-commits] repo/gentoo:master commit in: media-gfx/hugin/ Andreas K. Hüttel
2024-12-12  2:46 Sam James
2024-12-12  2:46 Sam James
2024-11-24 18:55 Markus Meier
2024-11-17 12:50 Markus Meier
2024-10-31 20:47 Markus Meier
2024-09-18 20:40 Markus Meier
2024-09-14 19:41 Markus Meier
2024-03-13  0:54 Sam James
2024-03-12 14:38 Arthur Zamarin
2024-03-12  0:39 Sam James
2023-12-21 18:30 Markus Meier
2023-09-23 20:08 Sam James
2023-02-16 17:13 Michał Górny
2023-02-01 19:27 Andreas Sturmlechner
2022-12-19 19:24 Markus Meier
2022-12-16  4:30 Sam James
2022-07-11  2:50 Sam James
2022-05-19 19:46 Markus Meier
2022-03-01  0:02 Sam James
2022-02-28 23:58 Sam James
2022-02-28  5:21 Sam James
2022-02-18 18:14 Sam James
2022-01-01 17:07 Markus Meier
2021-12-25 10:49 Markus Meier
2021-10-16 23:15 Andreas K. Hüttel
2021-04-20  7:37 Michał Górny
2021-02-28 12:26 Andreas Sturmlechner
2021-02-19 19:32 Thomas Deutschmann
2021-02-18  8:40 Sam James
2021-02-17  0:10 Sam James
2021-01-28 17:42 Sam James
2021-01-27  3:28 Sam James
2020-12-20  9:14 Markus Meier
2020-12-17 19:48 Markus Meier
2020-12-05  7:19 Miroslav Šulc
2020-10-25 19:01 Andreas K. Hüttel
2020-06-18 17:51 Markus Meier
2020-06-06 23:18 Andreas K. Hüttel
2020-05-11  9:26 Agostino Sarubbo
2020-05-10 17:42 Mart Raudsepp
2020-02-10 11:54 Michał Górny
2020-02-02 18:38 Tim Harder
2019-12-30 13:13 Markus Meier
2019-12-25 13:28 Markus Meier
2019-12-04 16:37 Aaron Bauman
2019-05-21 13:00 Andreas Sturmlechner
2019-05-20 17:22 Aaron Bauman
2019-05-19 20:59 Mikle Kolyada
2019-04-24 21:20 Ulrich Müller
2019-04-06 12:14 Markus Meier
2019-03-24 19:07 Markus Meier
2019-03-17 12:59 Andreas Sturmlechner
2018-07-09  1:29 Thomas Deutschmann
2018-06-24 13:51 Jason Zaman
2018-06-22 19:29 Andreas Hüttel
2018-04-26  5:02 Matt Turner
2018-02-04 17:11 Markus Meier
2018-02-03 17:01 Markus Meier
2017-12-29 12:15 Markus Meier
2017-12-09 23:31 Andreas Hüttel
2017-07-03 18:41 Markus Meier
2017-06-18  9:04 Markus Meier
2017-06-04  7:18 Markus Meier
2017-05-07  8:31 Markus Meier
2017-05-06 17:20 Agostino Sarubbo
2017-05-06 16:48 Agostino Sarubbo
2016-11-07 19:17 David Seifert
2016-11-07 18:05 David Seifert
2016-11-06 18:11 David Seifert
2016-09-23  5:03 Markus Meier
2016-07-10  9:14 Markus Meier
2016-04-20 15:13 Ian Stakenvicius
2016-03-20 10:39 Markus Meier
2016-03-13 12:28 Markus Meier
2016-03-10 18:05 Markus Meier
2015-11-07  7:50 Markus Meier
2015-11-03 16:18 Agostino Sarubbo
2015-10-27 12:18 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1517171905.b0618cdaff22d351db5c387976ac1f7a46d6ef5e.maekke@gentoo \
    --to=maekke@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox