From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B9BE138334 for ; Wed, 27 Feb 2019 04:34:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 513DEE0845; Wed, 27 Feb 2019 04:34:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28EF1E0845 for ; Wed, 27 Feb 2019 04:34:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2F74335CF7 for ; Wed, 27 Feb 2019 04:34:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D13E54A for ; Wed, 27 Feb 2019 04:34:51 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1551242078.e3bd81f0b1f93ce1cb0e450365a4167a0b559c4b.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/curve/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/curve/curve-1.16-r1.ebuild X-VCS-Directories: dev-tex/curve/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: e3bd81f0b1f93ce1cb0e450365a4167a0b559c4b X-VCS-Branch: master Date: Wed, 27 Feb 2019 04:34:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9271ce31-fb87-4afb-a714-8f2e32666e48 X-Archives-Hash: 68e07c2fcd616e5029150e607ec2896e commit: e3bd81f0b1f93ce1cb0e450365a4167a0b559c4b Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Aug 22 13:14:24 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Feb 27 04:34:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3bd81f0 dev-tex/curve: EAPI7 revbump Closes: https://bugs.gentoo.org/664256 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/9663 Signed-off-by: Aaron Bauman gentoo.org> dev-tex/curve/curve-1.16-r1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/dev-tex/curve/curve-1.16-r1.ebuild b/dev-tex/curve/curve-1.16-r1.ebuild new file mode 100644 index 00000000000..fd710c2dbb9 --- /dev/null +++ b/dev-tex/curve/curve-1.16-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit latex-package + +DESCRIPTION="LaTeX style for a CV (curriculum vitae) with flavour option" +HOMEPAGE="https://ctan.org/tex-archive/macros/latex/contrib/curve/" +SRC_URI="http://mirrors.ctan.org/macros/latex/contrib/${PN}.zip -> ${P}.zip" + +LICENSE="LPPL-1.2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc examples" + +RDEPEND=">=dev-texlive/texlive-latexextra-2010" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR}/${PN} + +TEXMF=/usr/share/texmf-site + +src_install() { + dodoc README NEWS THANKS + + latex-package_src_doinstall styles + + if use doc ; then + latex-package_src_doinstall pdf + fi + + if use examples ; then + insinto /usr/share/doc/${PF}/example + doins examples/* + fi +}