forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-misc/pdfpc: Version bump to 4.0.4
Package-Manager: portage-2.3.2
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST pdfpc-3.1.1.tgz 199004 SHA256 ec5ffb9c2b55d1bac76172a6a13ed527ceed8cf0d659aca5e302f6a7185f00f2 SHA512 554203094b18fe11fd085414961de6644df3c258ad52d46ad171cfd6c2199028bcbaa9560bdaba63d83f858b467407cc276972b34f341cc25260db1d1358e88d WHIRLPOOL bddcba6a4285ea2b58dd01f76b7b050db630eaa97de5bba32a66f7f85563e6a99763a52e82286297f605dfa59d9ff918007baab297e587968ac1c83e3d69e8a8 | ||
DIST pdfpc-4.0.2.tar.gz 75962 SHA256 591da2f984dd7714b0607aff450b99649f9a8caaf311a38be8f5e2e1e565be96 SHA512 01c957976d69b2e469989bb6b5957fd29b20e3a285c854fd42680f6c790849dfd3b4480c65ad5fcd5bd4106f92494626d46c943f6e9d6c0a0cb88168dc52b89f WHIRLPOOL 94cf57074285a6f25f9292c7b2ea21392b78133ed4e13579e030429af6a179ad5e4e17a1a488fc2e6ff29041101cb140166335e699ba7041a5b992c330ed6311 | ||
DIST pdfpc-4.0.3.tar.gz 79685 SHA256 50828fb35cb814bb679388c15f36087f4d8ea21e816f732d09bf1252e0f7ae91 SHA512 924a19504f5e47178f3f61dda25c51e9c78011527e58d2acc370c00516787022d3f532a415745f5c806b8cf82f4f3abce035eabc0dcea2ca054550bc84a67d6f WHIRLPOOL 8f41fb159d1dc9c9d2b1d9c4455efcfb0149ce5d57681595f5c53de0180979cf9c4271f1430578cfd9f81c0eaa80440e43304b07e72b1ded46c745c3eec17277 | ||
DIST pdfpc-4.0.4.tar.gz 79981 SHA256 3d22b262ff97ba16c4af651cfc439a758ee416500501574cc6cd909f3762b7ce SHA512 f97dfad7bda327c59221fe2a09b6561a4a2e29333a436e893db68445f2e2163a92df082b3d6c7f6c2dffee73ba926933a9b36fd11ea9632133f73771834a7822 WHIRLPOOL 406e0ba7304be8934081262b65db637e30f26ed22aebcbd34d8454420ca90146138815f0ee5ab925ab2a028137dc96152e475ac1bac3f02437c0d8b1e190aff8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
VALA_MIN_API_VERSION="0.26" | ||
VALA_MAX_API_VERSION="0.32" # fix sed line if you increase this | ||
|
||
inherit vala cmake-utils | ||
|
||
DESCRIPTION="Presenter console with multi-monitor support for PDF files" | ||
HOMEPAGE="http://pdfpc.github.io" | ||
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND="app-text/poppler:=[cairo] | ||
dev-libs/glib:2 | ||
dev-libs/libgee:0.8 | ||
gnome-base/librsvg | ||
media-libs/gstreamer:1.0 | ||
media-libs/gst-plugins-base:1.0 | ||
sys-apps/dbus | ||
x11-libs/gtk+:3" | ||
DEPEND="${RDEPEND} | ||
$(vala_depend)" | ||
|
||
src_prepare() { | ||
default | ||
sed -i -e "s/valac-0.20/valac-0.32 valac-0.30 valac-0.28 valac-0.26/" cmake/vala/FindVala.cmake || die | ||
vala_src_prepare | ||
} | ||
|
||
src_configure(){ | ||
local mycmakeargs=( | ||
-DSYSCONFDIR="${EPREFIX}/etc" | ||
) | ||
cmake-utils_src_configure | ||
} |