From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1026458974 for ; Sat, 30 Jan 2016 12:49:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 239D3E07F9; Sat, 30 Jan 2016 12:48:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB59CE07F9 for ; Sat, 30 Jan 2016 12:48:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D8AC340C2D for ; Sat, 30 Jan 2016 12:48:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDC1FC0 for ; Sat, 30 Jan 2016 12:48:54 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1454158128.0d2e7ed6c5af3f63cc1071ce754d8306e61cf8b5.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/g-brief/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/g-brief/g-brief-4.0.2.ebuild X-VCS-Directories: dev-tex/g-brief/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 0d2e7ed6c5af3f63cc1071ce754d8306e61cf8b5 X-VCS-Branch: master Date: Sat, 30 Jan 2016 12:48:54 +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-Archives-Salt: c24b6473-9581-4540-81df-8ac50d69b477 X-Archives-Hash: 895b1f2e476be7af5e3271773cc0b3b4 commit: 0d2e7ed6c5af3f63cc1071ce754d8306e61cf8b5 Author: Alexis Ballier gentoo org> AuthorDate: Sat Jan 30 12:48:04 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sat Jan 30 12:48:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2e7ed6 dev-tex/g-brief: Fix build. Bug #573374. Remove files that are going to be re-generated. Remove .dtx files after generating output so that it is not re-processing at src_install which would fail. Add missing dep. Remove outdated tetex blocker. Package-Manager: portage-2.2.27 Signed-off-by: Alexis Ballier gentoo.org> dev-tex/g-brief/g-brief-4.0.2.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/dev-tex/g-brief/g-brief-4.0.2.ebuild b/dev-tex/g-brief/g-brief-4.0.2.ebuild index 29c11ce..971d239 100644 --- a/dev-tex/g-brief/g-brief-4.0.2.ebuild +++ b/dev-tex/g-brief/g-brief-4.0.2.ebuild @@ -16,8 +16,17 @@ IUSE="" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -RDEPEND="!>=app-text/tetex-2.96" +RDEPEND="dev-texlive/texlive-langgerman" DEPEND="${RDEPEND} app-arch/unzip" TEXMF="/usr/share/texmf-site" + +src_compile() { + # latex chokes if these file exist, bug #573374 + rm -f g-brief.drv g-brief.cls g-brief.sty g-brief2.cls g-brief2.sty beispiel.tex beispiel2.tex + latex-package_src_compile + # Now that the source is processed, remove it so that it is not (wrongly) + # reprocessed at src_install. + rm -f g-brief.dtx +}