summaryrefslogtreecommitdiff
path: root/dev-tex/latex-calendar
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
commit77398e424e45d9e98c1cef3c43bdadb9d56e81ef (patch)
tree5aeffd3fc7b92fc615bd2c222fa8831aeda1925b /dev-tex/latex-calendar
parentbd4aeefe33e63f613512604e47bfca7b2187697d (diff)
gentoo resync : 10.11.2019
Diffstat (limited to 'dev-tex/latex-calendar')
-rw-r--r--dev-tex/latex-calendar/Manifest2
-rw-r--r--dev-tex/latex-calendar/latex-calendar-3.1.ebuild18
2 files changed, 12 insertions, 8 deletions
diff --git a/dev-tex/latex-calendar/Manifest b/dev-tex/latex-calendar/Manifest
index 877fa91923b1..783b18b110b9 100644
--- a/dev-tex/latex-calendar/Manifest
+++ b/dev-tex/latex-calendar/Manifest
@@ -1,3 +1,3 @@
DIST latex-calendar-3.1.tar.gz 108537 BLAKE2B d3fa6050ef034fbae26518620c7580975e39ee3a80273cb95ca2dca5c1d46df67ed5b98dba3ba829f1045e7144ffb04f6a4426449eca484707503a742c0bf7dd SHA512 bd014b8e0e09f61dfdbcb55903fbd4f797a91c3e47de284bb734e5b574ac2f1b9a1f80a801ca771ccd4056983353a4735b7e24dc448bb0a6eed7e79ceca0cbca
-EBUILD latex-calendar-3.1.ebuild 806 BLAKE2B 38d9065ab0991c2a6b0a03be9c8c51e444078436325c96c66f56be3de8541063ba2ce18a435fe2a2ececd5ff6b7708b38e28e27b25013ce19f3b352ea91e1904 SHA512 281fc37134f9b992d6d7d63c0e81df60f180e23f9a26631164e61eb82ae4113b64b2452c67f5e62f5bebe3a6d8c23ee367131996f54b7fd29f97f286738e8f00
+EBUILD latex-calendar-3.1.ebuild 845 BLAKE2B 3093f86a6929515cc619afb4d459c3a0442f5ead08222b63c0e32b83a0fb2c89c10804a665d5badbbdcc34227b8907838a4556d394a8dd58cc1ed0c57d985231 SHA512 6063054485499f0e69fcf327e9876eabb0a50ddcc80124ad105e90a8793a92a3eb60e149be3b22d0bb75b0c2ff9bf2f642d01bdbd1f35db23ac96ff1834ec4a4
MISC metadata.xml 245 BLAKE2B ee3a163cfe0a4bc59c0dfb46f9ddb580e2d259b4d0e33cb4e684eb9e6d4b901bf97c6edd891f3b75a613a782f1b89318d0ee3ec9bee4e34c4441d9e8f4267678 SHA512 1653777623e2c15e1ce13229e396723b2cc9c214983e0f8592de98c01a31badc6c38c6735ed44f937d145883b43fb6f049af3eddb9ff96b18c96ccf8f67dd690
diff --git a/dev-tex/latex-calendar/latex-calendar-3.1.ebuild b/dev-tex/latex-calendar/latex-calendar-3.1.ebuild
index b5bb6f0e1891..0877b3512838 100644
--- a/dev-tex/latex-calendar/latex-calendar-3.1.ebuild
+++ b/dev-tex/latex-calendar/latex-calendar-3.1.ebuild
@@ -1,18 +1,20 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=0
+EAPI=7
inherit latex-package
MY_P="calendar"
+
DESCRIPTION="LaTeX package used to create Calendars. Very flexible and robust"
-HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/calendar/"
+HOMEPAGE="https://www.ctan.org/tex-archive/macros/latex/contrib/calendar/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
+KEYWORDS="amd64 ppc sparc x86"
+
LICENSE="LaTeX-Calendar"
SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
IUSE=""
S=${WORKDIR}/${MY_P}
@@ -20,13 +22,15 @@ S=${WORKDIR}/${MY_P}
src_compile() {
debug-print function $FUNCNAME $*
echo "Extracting from allcal.ins"
- ( yes | latex allcal.ins ) >/dev/null 2>&1
+ ( yes | latex allcal.ins ) >/dev/null 2>&1 || die "extracting failed"
}
src_install() {
- texi2dvi -q -c --language=latex calguide.tex &> /dev/null
+ texi2dvi -q -c --language=latex calguide.tex &> /dev/null || die "conversion failed"
+
latex-package_src_doinstall styles fonts bin dvi
+
dodoc README MANIFEST CATALOG
- insinto /usr/share/doc/${P}/samples
- doins bigdemo.tgz *.cfg *.tex *.cld
+ docinto samples
+ dodoc bigdemo.tgz *.cfg *.tex *.cld
}