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.
Package-Manager: Portage-2.3.13, Repoman-2.3.4
- Loading branch information
1 parent
3e4ba19
commit 8cd7b71
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 biblatex-3.4.tds.tgz 19279991 SHA256 effbd2526564c9516bfd3cceaf3588e02ddd24b1aac9924c38ad9af78864596c SHA512 9b7c4692f4b98df7bf36f8a90e67720cb4f9dc7e47047e0c181b7e95323dd037ba38bad4c77bbcb5d88b1f366e15b579b5e9410055873a160d7728db9d59ac56 WHIRLPOOL 512a83892f1776195ce5e0850c4ffd09f43776ae3c8b50635cb40e75457a8cb6669bc26d38e71e102ba47fa0dba7ea7d5672ef4b91aa2e9e3cb8244b1296a28d | ||
DIST biblatex-3.7.tds.tgz 19378703 SHA256 78cf833df54f228e5b2a86c0b84dc1b070e965b487460c38e5f1f4cbb725b1f0 SHA512 d81a67b2b29e86e7017919ae1836da7b55da56698fd38f56cfc9377e6c15a8dff6ac28288c6b98a70b570f7db25504f18064093d6e21816c161dba155b6cc8f4 WHIRLPOOL 0c77b9145425d76bc5c9f08f97adfe0ea6565e4c82a27518788d14d553856ea104d32de13bb61024f5589704db2f4963ac0eba27b54635b448a5905a1ef69620 | ||
DIST biblatex-3.8.tds.tgz 19620662 SHA256 e4c66aa8962f7991fba56b07e859c6cf0cbe8db99ff3af5279b21a79f122ce26 SHA512 38e92488322c4b02db161b30c9581440bff07382d588e77b170a87316ff927a46bec8e573a80d33571b97c711ed657ac7d5f9410cca0b558dd6cae21e0894938 WHIRLPOOL bb95bb5c4806c22bec5771f62cb06228d5e4192d2b3a30fe330442c141d44771951126189b5f09ea6e033f8908cf1924726266074490bf7c56c841630cf0f2a3 |
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-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit latex-package | ||
|
||
DESCRIPTION="Reimplementation of the bibliographic facilities provided by LaTeX" | ||
HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex https://github.com/plk/biblatex/" | ||
SRC_URI="mirror://sourceforge/${PN}/${P}.tds.tgz" | ||
|
||
LICENSE="LPPL-1.3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm" | ||
IUSE="+biber doc examples" | ||
|
||
DEPEND="dev-texlive/texlive-bibtexextra | ||
dev-texlive/texlive-latexextra | ||
|| ( dev-texlive/texlive-plaingeneric dev-texlive/texlive-genericextra )" | ||
RDEPEND="${DEPEND}" | ||
PDEPEND="biber? ( ~dev-tex/biber-2.8 )" | ||
|
||
S="${WORKDIR}" | ||
TEXMF=/usr/share/texmf-site | ||
|
||
src_install() { | ||
insinto "${TEXMF}" | ||
doins -r bibtex tex | ||
|
||
dodoc doc/latex/biblatex/{README,CHANGES.org} | ||
if use doc ; then | ||
pushd doc || die | ||
latex-package_src_doinstall doc | ||
popd || die | ||
fi | ||
|
||
if use examples ; then | ||
dodoc -r doc/latex/biblatex/examples | ||
fi | ||
} |