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.
www-plugins/pdfjs: version bump to 1.9.426.
added missing app-arch/unzip DEPEND. Closes: https://bugs.gentoo.org/628018 Closes: https://bugs.gentoo.org/633610 Closes: gentoo#5874
- Loading branch information
1 parent
89d4a8e
commit be874f6
Showing
2 changed files
with
24 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 +1,2 @@ | ||
DIST pdfjs-1.7.225.zip 2590573 SHA256 c7781f6c90cd6806631cbf84a8b37d94d0831420e6d2b8055f18646076a51ed9 SHA512 b2464eb7197ee1e670c5814e19fa11eb41a2e54ba69883853418661dc667e3991ea2c677adaf5d192317e1f278656c4442caded8363aff09a4e9cebf170f59e6 WHIRLPOOL 5ad4e5cb96bb101ec8f56046b386213a7dc953d07ba1a53f06146499d63449a04ad07cca172fcf3079c829d9312a8b3f83fd5ee7d813d559ea2014514ef6dbb1 | ||
DIST pdfjs-1.9.426.zip 3510568 SHA256 00998c3b731382106e1f3a48ab15dce6714015573f76027c6b178fccf99f286c SHA512 4c6a7ac613755a73d694a80ccea0d0d3d100fb0c7039ae5d866059d39e58b650092a733c7bea6d302cfa196f439d28f59055443ab96443161d1770462d8976ef WHIRLPOOL 6b0b769e8cfff9c82a37e03ff06d5f9d6b5601c8ce25a5db2e10c7a34fc9fe23710d15b209346aea33221248eaa42bd6e554e8f290b0cc0b8157230800264ae2 |
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,23 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A PDF reader in JavaScript" | ||
HOMEPAGE="http://mozilla.github.io/pdf.js/" | ||
SRC_URI="https://github.com/mozilla/pdf.js/releases/download/v${PV}/${P}-dist.zip -> ${P}.zip" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
DEPEND="app-arch/unzip" | ||
|
||
S="${WORKDIR}" | ||
|
||
src_install() { | ||
insinto /usr/share/pdf.js/ | ||
|
||
doins -r build | ||
doins -r web | ||
} |