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 093FD13832E for ; Tue, 2 Aug 2016 08:42:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1083E0B77; Tue, 2 Aug 2016 08:42:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66D30E0B77 for ; Tue, 2 Aug 2016 08:42:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D51033BE19 for ; Tue, 2 Aug 2016 08:42:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FF6D7D3 for ; Tue, 2 Aug 2016 08:42:36 +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: <1470127352.e64c3fe8fcb1e8da7405ab31eefce87497ea1c07.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/chktex/chktex-1.7.5.ebuild X-VCS-Directories: dev-tex/chktex/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: e64c3fe8fcb1e8da7405ab31eefce87497ea1c07 X-VCS-Branch: master Date: Tue, 2 Aug 2016 08:42:36 +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: db7afa70-d493-49c3-8397-9ccb76efc2e1 X-Archives-Hash: 3f38ee797e76967bcc2a9afedc01756c commit: e64c3fe8fcb1e8da7405ab31eefce87497ea1c07 Author: Alexis Ballier gentoo org> AuthorDate: Tue Aug 2 08:42:12 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Aug 2 08:42:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e64c3fe8 dev-tex/chktex: build dvi file at src_compile instead of src_install; should fix bugs #568840 and #580918 Package-Manager: portage-2.3.0 dev-tex/chktex/chktex-1.7.5.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-tex/chktex/chktex-1.7.5.ebuild b/dev-tex/chktex/chktex-1.7.5.ebuild index cca1bf4..5d1fb74 100644 --- a/dev-tex/chktex/chktex-1.7.5.ebuild +++ b/dev-tex/chktex/chktex-1.7.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -40,6 +40,7 @@ src_configure() { src_compile() { autotools-utils_src_compile + autotools-utils_src_compile ChkTeX.dvi use doc && autotools-utils_src_compile html } @@ -48,6 +49,7 @@ src_install() { HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/") DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex") fi + DOCS+=("${AUTOTOOLS_BUILD_DIR}/ChkTeX.dvi") autotools-utils_src_install doman *.1 }