blob: 3be55e2dc1bd4c0e9699e9da14ad69092ef6f6e4 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit latex-package
DESCRIPTION="LaTeX package used to create leaflet-type brochures"
HOMEPAGE="https://www.ctan.org/tex-archive/macros/latex/contrib/leaflet/"
SRC_URI="mirror://gentoo/${P}.zip"
# checksum from official ftp site changes frequently so we mirror it
KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
LICENSE="LPPL-1.3"
SLOT="0"
IUSE=""
RDEPEND="dev-texlive/texlive-fontsrecommended"
DEPEND="${RDEPEND}
app-arch/unzip
"
DOCS=( "README" )
PATCHES=( "${FILESDIR}/${P}-logging.patch" )
TEXMF="/usr/share/texmf-site"
S=${WORKDIR}/leaflet
|