diff options
Diffstat (limited to 'app-doc/pms/pms-9999.ebuild')
-rw-r--r-- | app-doc/pms/pms-9999.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-doc/pms/pms-9999.ebuild b/app-doc/pms/pms-9999.ebuild new file mode 100644 index 000000000000..463aa5d34fba --- /dev/null +++ b/app-doc/pms/pms-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/pms/pms-9999.ebuild,v 1.1 2010/06/11 13:48:10 ulm Exp $ + +inherit git + +EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/pms.git" + +DESCRIPTION="Gentoo Package Manager Specification (draft)" +HOMEPAGE="http://www.gentoo.org/proj/en/qa/pms.xml" +SRC_URI="" + +LICENSE="CCPL-Attribution-ShareAlike-3.0" +SLOT="live" +KEYWORDS="" +IUSE="html" + +DEPEND="html? ( >=dev-tex/tex4ht-20090115_p0029 ) + dev-tex/leaflet + dev-texlive/texlive-bibtexextra + dev-texlive/texlive-latex + dev-texlive/texlive-latexrecommended + dev-texlive/texlive-latexextra + dev-texlive/texlive-science" +RDEPEND="" + +src_compile() { + emake || die + if use html; then + emake html || die + fi +} + +src_install() { + dodoc pms.pdf || die + if use html; then + dohtml *.html pms.css $(shopt -s nullglob; echo *.png) || die + fi +} |