public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/pqiv/
Date: Thu, 23 Feb 2017 00:42:41 +0000 (UTC)	[thread overview]
Message-ID: <1487810537.97034d0bb0641faa7ac9b928f94660d098ae529e.radhermit@gentoo> (raw)

commit:     97034d0bb0641faa7ac9b928f94660d098ae529e
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 23 00:35:52 2017 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 00:42:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97034d0b

media-gfx/pqiv: add archive use flag and fix backend loading (bug #603506)

 media-gfx/pqiv/metadata.xml         |  3 ++
 media-gfx/pqiv/pqiv-2.7.4-r1.ebuild | 77 +++++++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/media-gfx/pqiv/metadata.xml b/media-gfx/pqiv/metadata.xml
index 8db07c2cca..cb5fbcd275 100644
--- a/media-gfx/pqiv/metadata.xml
+++ b/media-gfx/pqiv/metadata.xml
@@ -12,4 +12,7 @@
     </maintainer>
     <remote-id type="github">phillipberndt/pqiv</remote-id>
   </upstream>
+  <use>
+    <flag name="archive">Enable support for images in archives and cbX comic book files</flag>
+  </use>
 </pkgmetadata>

diff --git a/media-gfx/pqiv/pqiv-2.7.4-r1.ebuild b/media-gfx/pqiv/pqiv-2.7.4-r1.ebuild
new file mode 100644
index 0000000000..ebedd6e373
--- /dev/null
+++ b/media-gfx/pqiv/pqiv-2.7.4-r1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit linux-info flag-o-matic toolchain-funcs fdo-mime
+
+DESCRIPTION="Modern rewrite of Quick Image Viewer"
+HOMEPAGE="https://github.com/phillipberndt/pqiv http://www.pberndt.com/Programme/Linux/pqiv/"
+SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="archive ffmpeg imagemagick kernel_linux libav pdf postscript"
+
+RDEPEND="
+	>=dev-libs/glib-2.8:2
+	>=x11-libs/cairo-1.6
+	x11-libs/gtk+:3
+	archive? ( app-arch/libarchive:0= )
+	ffmpeg? (
+		!libav? ( media-video/ffmpeg:0= )
+		libav? ( media-video/libav:0= )
+	)
+	imagemagick? ( media-gfx/imagemagick:0= )
+	pdf? ( app-text/poppler:0= )
+	postscript? ( app-text/libspectre:0= )
+"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+pkg_setup() {
+	if use kernel_linux; then
+		CONFIG_CHECK="~INOTIFY_USER"
+		linux-info_pkg_setup
+	fi
+}
+
+src_prepare() {
+	default
+	sed -i \
+		-e "s:/lib/:/$(get_libdir)/:g" \
+		GNUmakefile || die
+
+	# bug #603506
+	append-ldflags -Wl,--disable-new-dtags
+}
+
+src_configure() {
+	local backends="gdkpixbuf"
+	use archive && backends="${backends},archive,archive_cbx"
+	use ffmpeg || use libav && backends="${backends},libav"
+	use imagemagick && backends="${backends},wand"
+	use pdf && backends="${backends},poppler"
+	use postscript && backends="${backends},spectre"
+
+	./configure \
+		--backends-build=shared \
+		--backends=${backends} \
+		--prefix="${EPREFIX}/usr" \
+		--destdir="${ED}" \
+		|| die
+}
+
+src_compile() {
+	tc-export CC
+	emake VERBOSE=1 CFLAGS="${CFLAGS}"
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+	fdo-mime_desktop_database_update
+}


             reply	other threads:[~2017-02-23  0:42 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-23  0:42 Tim Harder [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-11 11:05 [gentoo-commits] repo/gentoo:master commit in: media-gfx/pqiv/ Arthur Zamarin
2023-12-01 14:39 Arthur Zamarin
2023-12-01 12:11 Arthur Zamarin
2023-12-01 12:11 Arthur Zamarin
2023-12-01 11:30 Ulrich Müller
2023-11-24 14:34 Michał Górny
2023-09-14 17:57 Arthur Zamarin
2023-09-14 17:57 Arthur Zamarin
2022-10-29 19:43 Sam James
2021-12-08 10:14 Yixun Lan
2021-10-19  0:12 Sam James
2020-04-26  7:44 Mikle Kolyada
2019-04-03  4:46 Tim Harder
2019-02-22 11:05 Mikle Kolyada
2019-02-15 15:46 Thomas Deutschmann
2018-12-13  3:34 Tim Harder
2018-12-13  3:34 Tim Harder
2018-12-13  3:34 Tim Harder
2018-06-25 19:26 Tim Harder
2018-03-23  6:39 Tim Harder
2018-03-23  6:39 Tim Harder
2017-12-27  6:58 Tim Harder
2017-11-20  7:17 Tim Harder
2017-10-02  4:36 Tim Harder
2017-10-02  4:36 Tim Harder
2017-08-17 19:12 Tim Harder
2017-08-17 19:12 Tim Harder
2017-08-17 19:12 Tim Harder
2017-04-26  0:19 Tim Harder
2017-04-12  8:01 Tim Harder
2017-04-05  4:53 Tim Harder
2017-03-01 13:54 Tim Harder
2017-02-23  0:48 Tim Harder
2017-02-23  0:42 Tim Harder
2017-02-23  0:42 Tim Harder
2017-02-16 13:05 Tim Harder
2016-11-19 17:14 Markus Meier
2016-11-16 21:01 Markus Meier
2016-11-09 18:50 Markus Meier

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=1487810537.97034d0bb0641faa7ac9b928f94660d098ae529e.radhermit@gentoo \
    --to=radhermit@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