26 lines
769 B
Bash
26 lines
769 B
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-tex/quotchap/quotchap-0.9f.ebuild,v 1.8 2008/05/30 10:57:19 aballier Exp $
|
|
|
|
inherit latex-package
|
|
|
|
S=${WORKDIR}/quotchap
|
|
|
|
DESCRIPTION="LaTeX package used to add quotes to chapters"
|
|
# Taken from http://theory.uwinnipeg.ca/scripts/CTAN/macros/latex/contrib/quotchap.zip
|
|
SRC_URI="mirror://gentoo/${P}.zip"
|
|
HOMEPAGE="ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/quotchap.html"
|
|
LICENSE="LPPL-1.2"
|
|
SLOT="0"
|
|
KEYWORDS="x86 ppc ~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND=""
|
|
|
|
src_install () {
|
|
export VARTEXFONTS="${T}/fonts"
|
|
latex-package_src_doinstall all
|
|
cd "${S}"
|
|
dodoc 00readme.txt document.pdf document.tex
|
|
}
|