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-text/zathura-pdf-mupdf: Version bump (fixes bug 572350, thanks Al…
…exander E. Sergeev). Package-Manager: portage-2.2.27
- Loading branch information
Showing
3 changed files
with
58 additions
and
1 deletion.
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
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,56 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit eutils toolchain-funcs | ||
[[ ${PV} == 9999* ]] && inherit git-2 | ||
|
||
DESCRIPTION="PDF plug-in for zathura" | ||
HOMEPAGE="http://pwmt.org/projects/zathura/" | ||
if ! [[ ${PV} == 9999* ]]; then | ||
SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz" | ||
fi | ||
EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git" | ||
EGIT_BRANCH="develop" | ||
|
||
LICENSE="ZLIB" | ||
SLOT="0" | ||
if ! [[ ${PV} == 9999* ]]; then | ||
KEYWORDS="~amd64 ~x86" | ||
else | ||
KEYWORDS="" | ||
fi | ||
IUSE="" | ||
|
||
RDEPEND="!app-text/zathura-pdf-poppler | ||
>=app-text/mupdf-1.7a:= | ||
>=app-text/zathura-0.3.1 | ||
media-libs/jbig2dec:= | ||
media-libs/openjpeg:2= | ||
virtual/jpeg:0 | ||
x11-libs/cairo:=" | ||
DEPEND="${RDEPEND} | ||
virtual/pkgconfig" | ||
|
||
pkg_setup() { | ||
myzathuraconf=( | ||
CC="$(tc-getCC)" | ||
LD="$(tc-getLD)" | ||
VERBOSE=1 | ||
DESTDIR="${D}" | ||
MUPDF_LIB="$($(tc-getPKG_CONFIG) --libs mupdf)" | ||
OPENSSL_INC="$($(tc-getPKG_CONFIG) --cflags mupdf)" | ||
OPENSSL_LIB='' | ||
) | ||
} | ||
|
||
src_compile() { | ||
emake "${myzathuraconf[@]}" | ||
} | ||
|
||
src_install() { | ||
emake "${myzathuraconf[@]}" install | ||
dodoc AUTHORS | ||
} |
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