From: "Bernard Cafarelli" <voyageur@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/geeqie/
Date: Fri, 2 Oct 2015 11:52:34 +0000 (UTC) [thread overview]
Message-ID: <1443786742.6cb647a384e9ab7bcf57db714a2fb6bddf059818.voyageur@gentoo> (raw)
commit: 6cb647a384e9ab7bcf57db714a2fb6bddf059818
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 2 11:52:12 2015 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Fri Oct 2 11:52:22 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb647a3
media-gfx/geeqie: version bump, bug #561912
Package-Manager: portage-2.2.22
media-gfx/geeqie/Manifest | 1 +
media-gfx/geeqie/geeqie-1.2.2.ebuild | 69 ++++++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
diff --git a/media-gfx/geeqie/Manifest b/media-gfx/geeqie/Manifest
index a470c29..3dc218b 100644
--- a/media-gfx/geeqie/Manifest
+++ b/media-gfx/geeqie/Manifest
@@ -1,2 +1,3 @@
DIST geeqie-1.2.1.tar.gz 1943377 SHA256 4611edfb25147d8cc98c0b64bef14a8fc7ab0996b662a1e19097eae21f6bf1d9 SHA512 d14069a333eb49f2bba1865d19facf2731b8d46fb95727c168cdb035bb8dcec55440f57170ed67e6d52349e92141066ea2293ca2040622970b30a3505a6902a4 WHIRLPOOL 85624263ebcaf8de54a4847110761cadc0b01a347b221ff9c303b63d556b8c62fd468d3426a98dabb01b035ebc442cab0075fa525660c9410662f12a95cbc1b7
+DIST geeqie-1.2.2.tar.xz 1156616 SHA256 e1cbc403650730e2f4092159e4347c858d3d81e4374d2a51d635234ba90b3ee3 SHA512 0e134802b42061e76ec2f2d9069ab13ebcab17f889b04917e15aba74a208a4c4ffa5a957f45eb5bd14917d98d2d6250c1085cb065a1ae487050e5e2f325c14c4 WHIRLPOOL 78e960d2e551675b6474d30cfb0119177e14d1930a23b930c5b7ef7757092085db423713be495a4fcb51112c293eb88b12fe511b5b4bf64c86c27b8e410cb318
DIST geeqie-1.2.tar.gz 1904764 SHA256 f13fc2489fb9bed31ed48aec8b2a3a573c11cd6e036f1b07ed2cf6495ccc75dd SHA512 cd27cc480cc649f6ba6ea2997bf9a3dc1aa3f655e6f949de27bb4bbfa79927126851604005bf0a0e2be86683f5b9b06dbfb86b919f828e54a79bafcdd6a0be92 WHIRLPOOL 82e25e743b62566dd99a630fb347966195a93b8eba51a300907e04e7113c5bc39a0bf74da28eeba6325558ff86d1bdea80cfe8c7fedf70ce5466e224e0b648c0
diff --git a/media-gfx/geeqie/geeqie-1.2.2.ebuild b/media-gfx/geeqie/geeqie-1.2.2.ebuild
new file mode 100644
index 0000000..045e981
--- /dev/null
+++ b/media-gfx/geeqie/geeqie-1.2.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils
+
+DESCRIPTION="A lightweight GTK image viewer forked from GQview"
+HOMEPAGE="http://www.geeqie.org"
+SRC_URI="http://www.geeqie.org/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug doc exif gtk3 jpeg lcms lirc lua tiff xmp"
+
+RDEPEND="gtk3? ( x11-libs/gtk+:3 )
+ !gtk3? ( x11-libs/gtk+:2 )
+ virtual/libintl
+ doc? ( app-text/gnome-doc-utils )
+ jpeg? ( virtual/jpeg:0 )
+ lcms? ( media-libs/lcms:2 )
+ lirc? ( app-misc/lirc )
+ lua? ( >=dev-lang/lua-5.1:= )
+ xmp? ( >=media-gfx/exiv2-0.17:=[xmp] )
+ !xmp? ( exif? ( >=media-gfx/exiv2-0.17 ) )
+ tiff? ( media-libs/tiff:0 )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ dev-util/intltool
+ sys-devel/gettext"
+
+src_prepare() {
+ epatch_user
+}
+
+src_configure() {
+ # clutter does not compile, gps depends on clutter
+ local myconf="--disable-dependency-tracking
+ --with-readmedir=/usr/share/doc/${PF}
+ --disable-clutter
+ --disable-gps
+ $(use_enable debug debug-log)
+ $(use_enable gtk3)
+ $(use_enable jpeg)
+ $(use_enable lcms)
+ $(use_enable lua)
+ $(use_enable lirc)
+ $(use_enable tiff)"
+
+ if use exif || use xmp; then
+ myconf="${myconf} --enable-exiv2"
+ else
+ myconf="${myconf} --disable-exiv2"
+ fi
+
+ econf ${myconf}
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ rm -f "${D}/usr/share/doc/${MY_P}/COPYING"
+}
+
+pkg_postinst() {
+ elog "Some plugins may require additional packages"
+ elog "- Image rotate plugin: media-gfx/fbida (JPEG), media-gfx/imagemagick (TIFF/PNG)"
+ elog "- RAW images plugin: media-gfx/ufraw"
+}
next reply other threads:[~2015-10-02 11:52 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-02 11:52 Bernard Cafarelli [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-07-23 3:40 [gentoo-commits] repo/gentoo:master commit in: media-gfx/geeqie/ Eli Schwartz
2024-07-23 3:40 Eli Schwartz
2024-06-26 19:32 Arthur Zamarin
2024-06-26 19:32 Arthur Zamarin
2024-03-25 20:15 Bernard Cafarelli
2024-03-09 8:33 Bernard Cafarelli
2024-03-09 8:33 Bernard Cafarelli
2024-03-04 4:14 Sam James
2024-01-27 10:02 Bernard Cafarelli
2024-01-11 9:38 Sam James
2023-10-27 15:20 Michał Górny
2023-10-09 20:02 Sam James
2023-08-22 12:00 Sam James
2023-08-22 12:00 Sam James
2023-08-21 6:52 Bernard Cafarelli
2023-08-17 3:51 Sam James
2023-08-01 21:57 Bernard Cafarelli
2023-07-18 12:25 Bernard Cafarelli
2023-07-10 19:54 Arthur Zamarin
2023-06-27 11:10 Bernard Cafarelli
2023-06-27 11:10 Bernard Cafarelli
2023-06-27 10:56 Sam James
2023-06-27 10:34 Bernard Cafarelli
2023-05-28 23:33 Sam James
2023-05-06 11:34 Sam James
2023-05-06 11:34 Sam James
2022-12-16 4:30 Sam James
2022-11-06 20:05 Bernard Cafarelli
2022-10-24 21:29 Bernard Cafarelli
2022-10-20 10:56 Jakov Smolić
2022-10-20 10:52 Jakov Smolić
2022-10-19 12:31 Bernard Cafarelli
2022-10-18 6:56 Bernard Cafarelli
2022-10-17 21:39 Bernard Cafarelli
2022-04-21 17:19 Bernard Cafarelli
2022-01-25 22:29 Bernard Cafarelli
2021-12-29 18:25 Bernard Cafarelli
2021-12-28 5:57 Sam James
2021-12-23 10:36 Agostino Sarubbo
2021-12-22 14:34 Bernard Cafarelli
2021-12-22 13:09 Bernard Cafarelli
2021-12-21 20:11 Bernard Cafarelli
2021-03-26 19:46 Conrad Kostecki
2020-12-04 16:13 Bernard Cafarelli
2020-12-03 12:54 Marek Szuba
2020-01-23 18:12 Bernard Cafarelli
2019-12-10 21:36 Bernard Cafarelli
2019-11-20 13:23 Agostino Sarubbo
2019-11-20 11:16 Agostino Sarubbo
2019-08-23 13:44 Bernard Cafarelli
2019-07-30 20:48 Bernard Cafarelli
2019-04-25 22:32 Pacho Ramos
2019-01-10 21:54 Andreas Sturmlechner
2019-01-10 21:54 Andreas Sturmlechner
2019-01-10 21:54 Andreas Sturmlechner
2019-01-10 21:54 Andreas Sturmlechner
2019-01-10 21:54 Andreas Sturmlechner
2018-12-28 21:41 Bernard Cafarelli
2018-10-04 9:04 Mikle Kolyada
2018-10-01 21:47 Thomas Deutschmann
2018-01-08 16:07 Bernard Cafarelli
2018-01-02 12:54 Bernard Cafarelli
2018-01-01 23:14 Bernard Cafarelli
2017-11-27 11:54 Marek Szuba
2017-10-09 23:28 Thomas Deutschmann
2016-11-09 12:47 Bernard Cafarelli
2016-04-19 13:12 Michał Górny
2016-04-18 9:43 Patrice Clement
2016-04-18 8:13 Patrice Clement
2016-04-13 9:14 Bernard Cafarelli
2016-03-06 12:58 Agostino Sarubbo
2016-02-19 17:16 Markus Meier
2015-10-26 12:57 Bernard Cafarelli
2015-10-03 21:06 Bernard Cafarelli
2015-09-01 21:02 Bernard Cafarelli
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=1443786742.6cb647a384e9ab7bcf57db714a2fb6bddf059818.voyageur@gentoo \
--to=voyageur@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