You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-tex/biblatex/biblatex-3.0-r1.ebuild

36 lines
958 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/biblatex/biblatex-3.0-r1.ebuild,v 1.1 2015/07/12 14:09:46 mrueg Exp $
EAPI=5
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 ~x86"
IUSE="doc examples"
RDEPEND="dev-texlive/texlive-bibtexextra
dev-texlive/texlive-latexextra"
DEPEND="${RDEPEND}"
S=${WORKDIR}
TEXMF=/usr/share/texmf-site
src_install() {
insinto "${TEXMF}"
doins -r bibtex tex
dodoc doc/latex/biblatex/{README,RELEASE}
use doc && { pushd doc/ ; latex-package_src_doinstall doc ; popd ; }
if use examples ; then
docinto examples
dodoc -r doc/latex/biblatex/examples
fi
}