blob: 9b65b1dce37360181ccd3558a0985d3157eb11a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 2014-2018 Martin V\"ath
# 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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="+examples"
# We need texlive-latexextra for toolbox.sty
DEPEND="virtual/latex-base"
RDEPEND="${DEPEND}
dev-texlive/texlive-latexextra"
BDEPEND="examples? ( ${DEPEND} )"
src_compile() {
local i j
if use examples
then einfo "Compiling example character sheet as pdf"
export VARTEXFONTS="${T}/fonts"
for i in *.tex beispiele/*.tex; do
j=${i##*/}
pdflatex "${i}" && test -s "${j%.tex}.pdf" \
|| die "could not compile ${i}"
[ "${j}" = "${i}" ] || mv "${j%.tex}.pdf" "${i%.tex}.pdf" || die
done
fi
}
src_install() {
TEXMF="/usr/share/texmf-site"
insinto "${TEXMF}/tex/latex/${PN}"
doins *.cls
insinto "${TEXMF}/doc/latex/${PN}"
doins *.tex
doins -r beispiele
if use examples
then doins *.pdf
fi
dodoc README.md
}
pkg_postinst() {
texconfig rehash
}
pkg_postrm() {
texconfig rehash
}
|