From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/nomacs/
Date: Thu, 11 Aug 2016 16:02:45 +0000 (UTC) [thread overview]
Message-ID: <1470931356.95d16c4f50c3fdb99ddd4aaa333dc81a5b436fe9.kensington@gentoo> (raw)
commit: 95d16c4f50c3fdb99ddd4aaa333dc81a5b436fe9
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 11 16:02:15 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Aug 11 16:02:36 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d16c4f
media-gfx/nomacs: version bump
Gentoo-bug: 590494
Package-Manager: portage-2.3.0
media-gfx/nomacs/Manifest | 1 +
media-gfx/nomacs/nomacs-3.4.ebuild | 61 ++++++++++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/media-gfx/nomacs/Manifest b/media-gfx/nomacs/Manifest
index a7fc59a..e2e9dbf 100644
--- a/media-gfx/nomacs/Manifest
+++ b/media-gfx/nomacs/Manifest
@@ -1,3 +1,4 @@
DIST nomacs-2.4.6-source.tar.bz2 1457529 SHA256 b846e335c768593e9f36cdee1a5c186e7794c76770ea3cadc87cf264153e8960 SHA512 9389df46635e619e198388e8b161a840d15227dd902cf04c250e71211098a10fd808d710ebab71f3e9a437bdca9451f966c46d22c2ce2379b94b678e79e92d71 WHIRLPOOL 97ccd02cbeabda62888ed25065cd24ce9a297b7bae3f9343e903d0223e8107cab601834fbc6dcf31a0b7f8d9e93052ba5a1a08e9c5e006027994c27bdb6f3940
DIST nomacs-3.0.0-source.tar.bz2 1465264 SHA256 a0e30cf2795dc18d1af29435145ea37f0cbb8dfb4013e01f5af267039560e476 SHA512 2a536012eed6ba59227aab9374fc22b7c9d49340d335c6c124cdc8f366f279a62edc37407dff47f1444b0d52f9df13e165ee76d44d453badefbffe5effbf8449 WHIRLPOOL 9a75bba86531b87025b8a01d96c9a12a2549d6d462cc0baeb37e06e37e419cb6e81d3be5c2b4894adb001210429f851dea4035aa281104566d1b168c9a81938d
DIST nomacs-3.2.0-source.tar.bz2 1090076 SHA256 82462f36659b0b09ef4169d927d0861244ecf83790ba03185a244440278c49ad SHA512 efd27d97a3843d2527c4423321ad946f32381a917f328878a04e39275e0fde2879e5836eb4ac2a54b489c47364f4ad76fd8dc7190fc8ebc1d9507d957fd66049 WHIRLPOOL 076390f77bcc47e88023f65bcdc5d17e939b08419c7ed9b3ed65f141a76d65ce64c3256b57fed3aecc7cd2b68b89dd871734ac248c6d1719e977ff14e0b117ec
+DIST nomacs-3.4.tar.gz 30026261 SHA256 552eda88aedea48831ce354095e3aad47892b4b5029f424171bedb68271c2a2f SHA512 67a1b57971dc373d5a3be75b7deaff6702893252568eef135903754b2465416a58b40f18f55cf2994c8c3853ae96b82506c1caf26b0e645c20179a9cd81c0d36 WHIRLPOOL f082d568ba56eaa1effc5e8552d16b816d558b7d4c2d7ddfd14a39f8805490d772116ca6ee35c8a38bd6b5fc69917287b7c596986f6a15b854bfebcbbe14304f
diff --git a/media-gfx/nomacs/nomacs-3.4.ebuild b/media-gfx/nomacs/nomacs-3.4.ebuild
new file mode 100644
index 0000000..51f52db
--- /dev/null
+++ b/media-gfx/nomacs/nomacs-3.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils fdo-mime
+
+DESCRIPTION="Qt-based image viewer"
+HOMEPAGE="http://www.nomacs.org/"
+SRC_URI="https://github.com/${PN}/${PN}/archive/3.4.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~amd64-linux"
+IUSE="opencv raw tiff zip"
+
+REQUIRED_USE="
+ raw? ( opencv )
+ tiff? ( opencv )
+"
+
+RDEPEND="
+ dev-qt/qtconcurrent:5
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtprintsupport:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ >=media-gfx/exiv2-0.25:=
+ opencv? ( media-libs/opencv:=[-qt4] )
+ raw? ( >=media-libs/libraw-0.14:= )
+ tiff? ( media-libs/tiff:0 )
+ zip? ( dev-libs/quazip[qt5] )
+"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/${P}/ImageLounge"
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_OPENCV=$(usex opencv)
+ -DENABLE_RAW=$(usex raw)
+ -DENABLE_TIFF=$(usex tiff)
+ -DENABLE_QUAZIP=$(usex zip)
+ -DUSE_SYSTEM_QUAZIP=ON
+ )
+ cmake-utils_src_configure
+}
+
+pkg_postinst() {
+ fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+ fdo-mime_desktop_database_update
+}
next reply other threads:[~2016-08-11 16:02 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-11 16:02 Michael Palimaka [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-01 4:30 [gentoo-commits] repo/gentoo:master commit in: media-gfx/nomacs/ Sam James
2025-01-01 4:30 Sam James
2024-12-31 20:24 Andreas Sturmlechner
2024-12-31 20:24 Andreas Sturmlechner
2024-11-17 17:16 Joonas Niilola
2024-11-17 17:16 Joonas Niilola
2024-03-07 23:24 Andreas Sturmlechner
2023-11-22 11:31 Arthur Zamarin
2023-10-09 7:04 Sam James
2023-09-03 12:19 Andreas Sturmlechner
2022-09-10 0:29 Sam James
2022-09-09 16:09 Andrew Ammerlaan
2022-08-06 21:49 James Le Cuirot
2021-02-23 19:53 Andreas Sturmlechner
2021-02-15 3:36 Sam James
2020-10-10 11:57 Andreas Sturmlechner
2020-10-09 8:41 Agostino Sarubbo
2020-10-04 16:59 Sam James
2020-08-30 5:20 Sam James
2020-08-09 8:32 Andreas Sturmlechner
2020-07-17 15:17 Agostino Sarubbo
2020-07-17 15:05 Agostino Sarubbo
2020-06-16 13:39 Andreas Sturmlechner
2019-04-18 9:03 Michael Palimaka
2019-02-07 11:46 Mikle Kolyada
2019-01-31 22:15 Thomas Deutschmann
2019-01-14 14:35 Mikle Kolyada
2018-12-31 16:43 Thomas Deutschmann
2018-12-29 22:02 Andreas Sturmlechner
2018-06-07 10:13 Agostino Sarubbo
2018-04-13 20:00 Andreas Sturmlechner
2018-04-13 20:00 Andreas Sturmlechner
2018-04-10 9:22 Andreas Sturmlechner
2017-12-07 11:31 Michael Palimaka
2017-09-13 12:20 Michael Palimaka
2017-08-27 7:14 Michael Palimaka
2017-08-27 7:14 Michael Palimaka
2017-06-20 5:17 Agostino Sarubbo
2017-06-18 14:01 Agostino Sarubbo
2017-04-25 8:08 Michael Palimaka
2017-01-09 12:26 Aaron Bauman
2016-12-22 17:07 Michael Palimaka
2016-10-28 20:38 Michael Palimaka
2016-06-09 11:18 Michael Palimaka
2016-03-06 12:58 Agostino Sarubbo
2015-10-04 21:44 Michał Górny
2015-10-04 14:51 Michał Górny
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=1470931356.95d16c4f50c3fdb99ddd4aaa333dc81a5b436fe9.kensington@gentoo \
--to=kensington@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