public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pdfpc/
Date: Thu,  9 Feb 2023 06:50:28 +0000 (UTC)	[thread overview]
Message-ID: <1675925379.3f7b0e6b767e42a4853dfc020e01dced295f62e2.ulm@gentoo> (raw)

commit:     3f7b0e6b767e42a4853dfc020e01dced295f62e2
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  9 06:48:47 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Feb  9 06:49:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7b0e6b

app-misc/pdfpc: add 4.6.0

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-misc/pdfpc/Manifest           |  1 +
 app-misc/pdfpc/pdfpc-4.6.0.ebuild | 76 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/app-misc/pdfpc/Manifest b/app-misc/pdfpc/Manifest
index a5bc8993565a..6e148727e252 100644
--- a/app-misc/pdfpc/Manifest
+++ b/app-misc/pdfpc/Manifest
@@ -1 +1,2 @@
 DIST pdfpc-4.5.0.tar.gz 7754665 BLAKE2B 952a1694811ff80ab6b2e46b440182407ce16a727ebc1f1492cf1f86c25fe1827e926eb5baf59376f46b8e7bea6e00e4f1343930cd043445f7d2966a958b4a6c SHA512 142a276dc410bd1aac90b27d1b10d165de225d5cec73ab39d7f7061e5d8ac7526e3f537b61f15e904bba8d135a72c5567dfa350e454006435ad3647d22c58221
+DIST pdfpc-4.6.0.tar.gz 7766521 BLAKE2B 3e8914333a0781d3d750ab71d58c8af1451ce5ab321ecc0639ddcf377cae9a0c62290696455516ce1d70f4ae3ffc5889fe910ced0399787e6a40c8ae76e1f75e SHA512 4ec69cbe21fb8bbb3e381229c391133f92e76b610e1fdf1cffa2c9fa9997ccc879eaef2a6837b34d1e635cdd07c4d0ce98de03fd7ece431a8f35493f0f7d7651

diff --git a/app-misc/pdfpc/pdfpc-4.6.0.ebuild b/app-misc/pdfpc/pdfpc-4.6.0.ebuild
new file mode 100644
index 000000000000..f1047533fe6e
--- /dev/null
+++ b/app-misc/pdfpc/pdfpc-4.6.0.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+VALA_MAX_API_VERSION="0.56" # append versions in sed line if increased
+
+#COMMIT_ID=""
+
+inherit cmake vala
+
+DESCRIPTION="Presenter console with multi-monitor support for PDF files"
+HOMEPAGE="https://pdfpc.github.io https://github.com/pdfpc/pdfpc"
+
+if [[ ${PV} == *9999 ]]; then
+	EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
+	inherit git-r3
+elif [[ ${PV} == *_p* ]]; then
+	SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/${PN}-${COMMIT_ID}"
+else
+	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+gstreamer"
+
+RDEPEND="
+	app-text/discount:=
+	app-text/poppler:=[cairo]
+	dev-libs/glib:2
+	dev-libs/json-glib
+	dev-libs/libgee:0.8=
+	gnome-base/librsvg
+	media-gfx/qrencode
+	net-libs/libsoup:2.4
+	net-libs/webkit-gtk:4=
+	x11-libs/cairo
+	x11-libs/gdk-pixbuf:2
+	x11-libs/gtk+:3
+	x11-libs/libX11
+	x11-libs/pango
+	gstreamer? (
+		media-libs/gstreamer:1.0
+		media-libs/gst-plugins-base:1.0
+		media-libs/gst-plugins-good:1.0
+		media-plugins/gst-plugins-gtk:1.0=
+		media-plugins/gst-plugins-cairo:1.0=
+	)
+"
+DEPEND="${RDEPEND}"
+BDEPEND="$(vala_depend)"
+
+DOCS=(
+	CHANGELOG.rst
+	FAQ.rst
+	README.rst
+	SUPPORT.rst
+)
+
+src_prepare() {
+	cmake_src_prepare
+	vala_setup
+	sed -i -e "/find_program/s/valac/& &-0.56 &-0.54 &-0.52 &-0.50/" \
+		cmake/vala/FindVala.cmake || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DMOVIES=$(usex gstreamer on off)
+		-DCMAKE_VERBOSE_MAKEFILE=TRUE
+	)
+	cmake_src_configure
+}


             reply	other threads:[~2023-02-09  6:50 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-09  6:50 Ulrich Müller [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-05-22 21:30 [gentoo-commits] repo/gentoo:master commit in: app-misc/pdfpc/ Ulrich Müller
2023-04-25 20:57 Sam James
2023-04-25 20:57 Sam James
2023-02-11  4:30 Ulrich Müller
2023-01-30 15:25 Ben Kohler
2023-01-01 14:48 David Seifert
2022-07-29  7:22 Ulrich Müller
2022-07-28 23:06 Sam James
2022-07-28 23:06 Sam James
2022-06-24  7:49 Ulrich Müller
2021-12-20  9:17 Ulrich Müller
2021-12-20  9:17 Ulrich Müller
2021-12-16 17:02 Jakov Smolić
2021-12-16  7:44 Agostino Sarubbo
2021-12-15 13:40 Jakov Smolić
2021-09-03  7:55 Joonas Niilola
2021-09-03  7:55 Joonas Niilola
2021-09-03  7:55 Joonas Niilola
2021-02-19  2:14 Andreas Sturmlechner
2021-02-18 23:25 Sam James
2021-02-18 17:12 Sam James
2021-01-18  9:28 Joonas Niilola
2020-04-26 13:37 Joonas Niilola
2020-04-26 13:37 Joonas Niilola
2020-04-26 13:37 Joonas Niilola
2019-03-20 20:27 Aaron Bauman
2019-03-02 10:31 Tiziano Müller
2019-03-02 10:31 Tiziano Müller
2019-02-26 19:12 Mikle Kolyada
2019-02-26 19:10 Mikle Kolyada
2019-02-15  0:18 Thomas Deutschmann
2018-12-30 16:18 Manuel Rüger
2018-10-28 17:02 Manuel Rüger
2018-06-07 10:48 Andreas Sturmlechner
2018-06-07 10:13 Agostino Sarubbo
2018-05-03 17:21 Manuel Rüger
2018-05-03 17:21 Manuel Rüger
2018-03-13 12:51 Michael Palimaka
2017-10-03 21:54 Patrice Clement
2017-07-23 12:07 Michael Palimaka
2017-07-23 12:04 Manuel Rüger
2017-06-28 15:08 Manuel Rüger
2017-02-19 19:45 Manuel Rüger
2017-02-19 19:42 Manuel Rüger
2017-01-04 22:51 Manuel Rüger
2016-11-22 20:44 Manuel Rüger
2016-11-22 20:44 Manuel Rüger
2016-10-08  9:51 Pacho Ramos
2016-10-02 23:23 Manuel Rüger
2016-02-16 22:46 Manuel Rüger
2016-02-14 21:56 Manuel Rüger
2016-02-01 20:45 Pacho Ramos
2015-12-20 12:02 Manuel Rüger
2015-11-08 15:51 Manuel Rüger

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=1675925379.3f7b0e6b767e42a4853dfc020e01dced295f62e2.ulm@gentoo \
    --to=ulm@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