forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Andrey Grozin <[email protected]>
- Loading branch information
Andrey Grozin
committed
Aug 31, 2020
1 parent
e14d6c3
commit de0fe94
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST latex-beamer-3.56.tar.gz 651927 BLAKE2B b63bbe0e2b392db8166a3b3465464457e761a35c8a3c7ade0803c905a42a4a35731b816c4cf24fa352a0da720a2f4aa0aaa475c7db577e43e354c3e6eeb5fc1c SHA512 b774923f65312d359eb843826cd96363e6f0d315a22c1f881a1a17ed7f307ed568e593a1489b47d4ef0b630248fcadcbd7df1d69b2c39ace13c385c4d53ce236 | ||
DIST latex-beamer-3.57.tar.gz 653136 BLAKE2B 7157d1e52df5221ea2aaa2634ed079bc690eb541cef2a6b60742d02e197ebdb4589877327c12aed80eebbb4fffa2b7d68a3ec6e4799874ff396660d4a1b949c9 SHA512 b3d7d5aa552badde18ae49967d729ee99a10a5157e167db92c235bdc36662d1113c5a5c775d59c7976e9e6a24a2e08271b95dc6240d3ed28fc816cdad3499ff7 | ||
DIST latex-beamer-3.59.tar.gz 662040 BLAKE2B 17fac01d2fde92300e1c678bbb7302a318a98e542196647dc4f5fa24b34df82f246f206a73a7af1d1b80244ae3ee04387cc77a8c77922f3eb1ea81e70a08b24f SHA512 0bc7dbcabf2f699f11c703d628f304d6b9658bbd260aaeac6c97813f14ed48b14b9a1a1d2eedfd4d8c8c31a91f1b57b1e9520a78ab962814f65a0b9781b55f79 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit latex-package | ||
|
||
DESCRIPTION="LaTeX class for creating presentations using a video projector" | ||
HOMEPAGE="https://github.com/josephwright/beamer" | ||
SRC_URI="https://github.com/josephwright/beamer/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-2 FDL-1.2 LPPL-1.3c" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" | ||
IUSE="doc" | ||
|
||
DEPEND="dev-texlive/texlive-latex" | ||
RDEPEND=">=dev-tex/pgf-1.10 | ||
dev-texlive/texlive-latexrecommended | ||
!dev-tex/translator" | ||
|
||
S=${WORKDIR}/beamer-${PV} | ||
|
||
src_prepare() { | ||
default | ||
rm -rf doc/licenses || die | ||
} | ||
|
||
src_install() { | ||
insinto /usr/share/texmf-site/tex/latex/beamer | ||
doins -r base | ||
|
||
dodoc README.md | ||
|
||
if use doc ; then | ||
docinto doc | ||
dodoc -r doc | ||
dosym "../../../../../usr/share/doc/${PF}/doc/" "${TEXMF}/doc/latex/beamer" | ||
fi | ||
} |