# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit latex-package EAPI="1" DESCRIPTION="Bibliographies in LaTeX using BibTeX for sorting only" HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/exptl/biblatex/" SRC_URI="http://sourceforge.net/projects/biblatex/files/biblatex/biblatex-${PV}.tar.gz" S="${WORKDIR}/${PN}" LICENSE="LPPL-1.3" SLOT="0" KEYWORDS="~x86" IUSE="+doc examples" TEXMF="/usr/share/texmf-site" RDEPEND="dev-texlive/texlive-latexextra app-text/texlive-core" DEPEND="${RDEPEND} app-arch/unzip" src_install() { cd "${S}/latex" insinto ${TEXMF}/tex/latex/${PN} doins -r bbx biblatex.cfg biblatex.def biblatex.sty bibnatex.def cbx lbx cd ../bibtex insinto ${TEXMF}/bibtex/bst/${PN} doins biblatex.bst cd .. dodoc README cd doc if use doc ; then dodoc biblatex.pdf biblatex.tex fi if use examples ; then insinto /usr/share/doc/${P} doins -r examples resources fi }