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-doc/pms: Version bump to 8_p20210613
Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Ulrich Müller <[email protected]>
- Loading branch information
Showing
2 changed files
with
41 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,2 +1,3 @@ | ||
DIST pms-5.tar.xz 50284 BLAKE2B ecf3c34d79aa1439e0f0f4bca540b673440db04a7f533f103f5956f6a27e994ee42836ae2871c11fadf9230e2b5973d3d1db9e17167f886a6c929e533ece4d45 SHA512 560bdda40d4d1628e97b65bb354c349e3ac52edd1e337427adb0db61e99b40d214459a5046f4b505edfabc3914e2d585ef0453b13057a25fe138b8a5ebd6292e | ||
DIST pms-7_p20180430.tar.xz 60072 BLAKE2B 58afb1759c84ae86a1dd69aa04a6e8b799fd0cc1e1877cf1f6224f5b1bdbdfcdeaadcabbd9c37c263d62cb24b4164056a88d3524031d1704b059c376d5572101 SHA512 9bb64de842e0aa8f1a6488d12fffba76bfd190e53523e9261161467b30f001f20cddf593cd32e75ace4af309476eb7eb6966665d7ae9b54a5915237094110a47 | ||
DIST pms-8_p20210613.tar.xz 61820 BLAKE2B 1e7e53cb8ea76c4b6f7e571b495bdc41956bee9d90fa1828b8875c262c0a500f8df25a3a53deb9fa9843250e8f3b914514a87019e57f0ecf329e8a62581c842f SHA512 07ef44b0be9b5d5c73e76f78aba2535eb57a8c555ec19bc4ba0a18a6b3b796cb44d6d9e67be49b704f43fa7ad6a8d111f7128d42caa43278dd269863dd59dc15 |
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,40 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
DESCRIPTION="Gentoo Package Manager Specification" | ||
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Package_Manager_Specification" | ||
SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" | ||
|
||
LICENSE="CC-BY-SA-4.0" | ||
SLOT="0" | ||
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" | ||
IUSE="html twoside" | ||
|
||
# texlive-bibtexextra for unsrturl.bst | ||
# texlive-latexextra for chngcntr, gitinfo2, isodate, leaflet, marginnote, | ||
# paralist, tocbibind | ||
# texlive-mathscience for algorithm, algorithmic | ||
BDEPEND="dev-texlive/texlive-bibtexextra | ||
>=dev-texlive/texlive-latexextra-2020-r2 | ||
dev-texlive/texlive-mathscience | ||
virtual/latex-base | ||
html? ( >=dev-tex/tex4ht-20090611_p1038-r11 )" | ||
RDEPEND="!app-doc/pms-bin" | ||
|
||
src_compile() { | ||
# just in case; we shouldn't be generating any fonts | ||
export VARTEXFONTS="${T}/fonts" | ||
emake $(usex twoside TWOSIDE=yes "") | ||
use html && emake html | ||
} | ||
|
||
src_install() { | ||
dodoc pms.pdf eapi-cheatsheet.pdf | ||
if use html; then | ||
docinto html | ||
dodoc *.html pms.css | ||
dosym {..,/usr/share/doc/${PF}/html}/eapi-cheatsheet.pdf | ||
fi | ||
} |