From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/rawtherapee/
Date: Tue, 3 Oct 2017 21:52:56 +0000 (UTC) [thread overview]
Message-ID: <1507067574.91b75294cb4e2e73a852b1000848a699ecf53ce2.monsieurp@gentoo> (raw)
commit: 91b75294cb4e2e73a852b1000848a699ecf53ce2
Author: Francesco Riosa <vivo75 <AT> gmail <DOT> com>
AuthorDate: Mon Oct 2 13:10:49 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Oct 3 21:52:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91b75294
media-gfx/rawtherapee: version bump to 5.3.
Closes: https://github.com/gentoo/gentoo/pull/5837
media-gfx/rawtherapee/Manifest | 1 +
media-gfx/rawtherapee/rawtherapee-5.3.ebuild | 66 ++++++++++++++++++++++++++++
2 files changed, 67 insertions(+)
diff --git a/media-gfx/rawtherapee/Manifest b/media-gfx/rawtherapee/Manifest
index 67032d336ab..761e9363690 100644
--- a/media-gfx/rawtherapee/Manifest
+++ b/media-gfx/rawtherapee/Manifest
@@ -1,2 +1,3 @@
DIST rawtherapee-5.1.tar.xz 10785516 SHA256 fb742065a6b2e1b89df67c70395e52ee1ebd537c86dfc473b41e7af171655b67 SHA512 6a881fe24a4109c7db39cb8bee500eb2f9357c479ddb32b3c9b7987aa5d12e4f10083533b5657a0e0f0713fe4ebc58e0dcf204eb8d5c5b656f3e7867a775ab19 WHIRLPOOL 0fc24843015750ab4747311d5ac6f40e5ebd9cedaa9c78e73c7fa7250dcbda9ea1260b7f6fc9a0c91559be4530a84e3826f991d9b9199d7caf25691ad78fd78b
DIST rawtherapee-5.2.tar.xz 10819936 SHA256 5c32679bfb77eca36c26288483be75696086459b7a59bd4437e371ea1bf827b6 SHA512 ed2ff2e96ad4f0c50ebbc8a232d85b8c5b118bc956bc26aa72beb4741f464c46900aa668127fe7bdc963fabb5c2e2931c50cf784d1fc4fbc4dce3090412a1b5d WHIRLPOOL 02c71705b76df25e86b6ba5bf6439a3a2966e84dfa968b0a82c1dbe0c6297af826d2ffff6e973a56db21f5821d0a4eead6c05422bc6cb36269ed18b829bad1df
+DIST rawtherapee-5.3.tar.xz 11042548 SHA256 97959c946b7cc346affce53efc4bf6eca4125873343f96d1fbe43a5c717f3ef8 SHA512 8a9a7fe98ba0c8e03e964c809afc90afcc03a31b8b88e0f9e2ab4ecdc1fbe4712231f692d0585d95d638cae7171393e01860296149fc9dfbd86ecb35c3709284 WHIRLPOOL 4ad4824ec499a3c10ca20fae5d95e36bc5503a5c878219d4fae12116b96d99c8f02a4017932e753284a93d6d01302cb64363fb953af600fb223b11758ae286ff
diff --git a/media-gfx/rawtherapee/rawtherapee-5.3.ebuild b/media-gfx/rawtherapee/rawtherapee-5.3.ebuild
new file mode 100644
index 00000000000..a345df7ead1
--- /dev/null
+++ b/media-gfx/rawtherapee/rawtherapee-5.3.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils toolchain-funcs flag-o-matic
+
+DESCRIPTION="A powerful cross-platform raw image processing program"
+HOMEPAGE="http://www.rawtherapee.com/"
+
+MY_P=${P/_rc/-rc}
+SRC_URI="http://rawtherapee.com/shared/source/${MY_P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="openmp"
+
+RDEPEND="x11-libs/gtk+:3
+ dev-libs/expat
+ dev-libs/libsigc++:2
+ media-libs/libcanberra[gtk3]
+ media-libs/tiff:0
+ media-libs/libpng:0
+ media-libs/libiptcdata
+ media-libs/lcms:2
+ media-libs/lensfun
+ sci-libs/fftw:3.0
+ sys-libs/zlib
+ virtual/jpeg:0"
+DEPEND="${RDEPEND}
+ app-arch/xz-utils
+ virtual/pkgconfig
+ dev-cpp/gtkmm:3.0"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+ if use openmp ; then
+ tc-has-openmp || die "Please switch to an openmp compatible compiler"
+ fi
+ # https://bugs.gentoo.org/show_bug.cgi?id=606896#c2
+ # https://github.com/vivo75/vivovl/issues/2
+ if [[ $(get-flag -O3) != "-O3" ]] ; then
+ ewarn "upstream suggest using {C,CXX}FLAGS+=\"-O3\" for better performances"
+ ewarn "see bug#606896#c2"
+ ewarn "take a look at https://wiki.gentoo.org/wiki//etc/portage/package.env"
+ ewarn "for suggestion on how to change environment for a single package"
+ fi
+}
+
+src_configure() {
+ filter-flags -ffast-math
+ # In case we add an ebuild for klt we can (i)use that one,
+ # see http://cecas.clemson.edu/~stb/klt/
+ local mycmakeargs=(
+ -DOPTION_OMP=$(usex openmp)
+ -DDOCDIR=/usr/share/doc/${PF}
+ -DCREDITSDIR=/usr/share/${PN}
+ -DLICENCEDIR=/usr/share/${PN}
+ -DCACHE_NAME_SUFFIX=""
+ -DWITH_SYSTEM_KLT="off"
+ )
+ cmake-utils_src_configure
+}
next reply other threads:[~2017-10-03 21:53 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-03 21:52 Patrice Clement [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-04 18:39 [gentoo-commits] repo/gentoo:master commit in: media-gfx/rawtherapee/ Andreas Sturmlechner
2024-10-23 23:24 Jakov Smolić
2024-10-23 15:56 Sam James
2024-10-16 12:00 Ben Kohler
2024-10-16 11:44 Ben Kohler
2024-10-03 10:33 Jakov Smolić
2024-10-02 20:50 Sam James
2024-08-30 15:37 Ben Kohler
2024-04-27 12:16 Ben Kohler
2024-04-26 14:31 Ben Kohler
2024-03-10 13:11 Ben Kohler
2024-02-19 13:15 Ben Kohler
2023-03-30 18:05 Ben Kohler
2023-03-08 21:25 Ben Kohler
2023-02-25 14:10 Ben Kohler
2023-02-09 13:34 Joonas Niilola
2023-02-09 8:50 Joonas Niilola
2022-12-22 17:49 Ben Kohler
2022-12-18 7:46 Sam James
2022-12-18 5:28 Yixun Lan
2022-12-18 1:40 Sam James
2022-12-17 22:37 Ben Kohler
2022-09-16 13:51 Ben Kohler
2022-08-12 13:21 Yixun Lan
2022-05-14 21:30 David Seifert
2022-04-29 3:07 Sam James
2022-02-13 8:41 Jakov Smolić
2021-12-09 16:22 Agostino Sarubbo
2021-08-11 15:18 Joonas Niilola
2021-08-11 15:18 Joonas Niilola
2020-09-04 14:05 Sam James
2020-09-03 14:29 Thomas Deutschmann
2020-02-26 18:36 Andreas Sturmlechner
2019-09-26 15:51 Joonas Niilola
2019-09-22 20:48 Andreas Sturmlechner
2019-07-18 15:30 Andreas Sturmlechner
2019-07-18 11:44 Agostino Sarubbo
2019-07-18 9:54 Agostino Sarubbo
2019-05-15 12:31 Andreas Sturmlechner
2019-05-15 12:31 Andreas Sturmlechner
2019-04-13 19:10 Agostino Sarubbo
2019-01-04 13:02 Andreas Sturmlechner
2019-01-04 13:00 Andreas Sturmlechner
2019-01-04 13:00 Andreas Sturmlechner
2019-01-04 13:00 Andreas Sturmlechner
2018-10-27 19:00 Mikle Kolyada
2018-10-26 0:52 Thomas Deutschmann
2018-03-29 12:42 Michał Górny
2018-03-29 12:42 Michał Górny
2017-10-26 18:54 Thomas Deutschmann
2017-05-23 21:31 Patrice Clement
2017-03-22 10:45 Marek Szuba
2017-03-20 13:31 Luca Barbato
2015-12-15 20:16 Pacho Ramos
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=1507067574.91b75294cb4e2e73a852b1000848a699ecf53ce2.monsieurp@gentoo \
--to=monsieurp@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