summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-rpg/m5figur-mv/m5figur-mv-3.0.ebuild')
-rw-r--r--games-rpg/m5figur-mv/m5figur-mv-3.0.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/games-rpg/m5figur-mv/m5figur-mv-3.0.ebuild b/games-rpg/m5figur-mv/m5figur-mv-3.0.ebuild
deleted file mode 100644
index 518116d8..00000000
--- a/games-rpg/m5figur-mv/m5figur-mv-3.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2014-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-# Do *not* inherit latex-package: It DEPENDS unconditionally on texinfo.
-# Moreover, it would attempt to compile the *.tex example with texinfo to dvi.
-RESTRICT="mirror"
-
-DESCRIPTION="LaTeX2e character sheet layout for the Midgard Role Playing Game (Edition M5)"
-HOMEPAGE="https://github.com/vaeth/m5figur-mv/"
-SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LPPL-1.2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+examples"
-# We need texlive-latexextra for toolbox.sty
-DEPEND="virtual/latex-base"
-RDEPEND="${DEPEND}
- dev-texlive/texlive-latexextra"
-BDEPEND="examples? ( ${DEPEND} )"
-
-src_compile() {
- if use examples
- then einfo "Compiling example character sheet as pdf"
- export VARTEXFONTS="${T}/fonts"
- pdflatex *.tex && test -s *.pdf || die "could not create example"
- fi
-}
-
-src_install() {
- TEXMF="/usr/share/texmf-site"
- insinto "${TEXMF}/tex/latex/${PN}"
- doins *.cls
- insinto "${TEXMF}/doc/latex/${PN}"
- doins *.tex
- if use examples
- then doins *.pdf
- fi
- dodoc README.md
-}
-
-pkg_postinst() {
- texconfig rehash
-}
-
-pkg_postrm() {
- texconfig rehash
-}