From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1182073-garchives=archives.gentoo.org@lists.gentoo.org> 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 0863E1382C5 for <garchives@archives.gentoo.org>; Wed, 24 Jun 2020 10:44:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23DDDE0923; Wed, 24 Jun 2020 10:43:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 04DAFE0923 for <gentoo-commits@lists.gentoo.org>; Wed, 24 Jun 2020 10:43:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 26BE034F1B1 for <gentoo-commits@lists.gentoo.org>; Wed, 24 Jun 2020 10:43:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D6082B2 for <gentoo-commits@lists.gentoo.org>; Wed, 24 Jun 2020 10:43:54 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1592995419.cfc17f34f5b390141f756416c56a8fbcd643a27c.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/tex4ht/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/tex4ht/tex4ht-20090611_p1038-r10.ebuild X-VCS-Directories: dev-tex/tex4ht/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: cfc17f34f5b390141f756416c56a8fbcd643a27c X-VCS-Branch: master Date: Wed, 24 Jun 2020 10:43:54 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c2b97996-29bf-4b93-94da-db8e7623c89e X-Archives-Hash: bd828d52f6a0ac9e9d17fe1fec5cee31 commit: cfc17f34f5b390141f756416c56a8fbcd643a27c Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Jun 24 10:20:27 2020 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Wed Jun 24 10:43:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfc17f34 dev-tex/tex4ht: Replace postinst message by README.gentoo. Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> dev-tex/tex4ht/tex4ht-20090611_p1038-r10.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-tex/tex4ht/tex4ht-20090611_p1038-r10.ebuild b/dev-tex/tex4ht/tex4ht-20090611_p1038-r10.ebuild index 73b16a84d59..b88bcf3fcf0 100644 --- a/dev-tex/tex4ht/tex4ht-20090611_p1038-r10.ebuild +++ b/dev-tex/tex4ht/tex4ht-20090611_p1038-r10.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit latex-package toolchain-funcs java-pkg-opt-2 flag-o-matic +inherit latex-package toolchain-funcs java-pkg-opt-2 flag-o-matic readme.gentoo-r1 # from http://mirrors.ctan.org/systems/texlive/tlnet/archive/tex4ht.tar.xz TL_TEX4HT_VER="2020-06-24" @@ -111,12 +111,16 @@ src_install() { insinto ${TEXMF}/tex/generic/${PN} insopts -m755 doins "${S}"/bin/ht/unix/* + + local DOC_CONTENTS="In order to avoid collisions with multiple packages, + we are not installing the scripts in /usr/bin any more. + If you want to use, say, htlatex, you can use 'mk4ht htlatex file'." + use java || DOC_CONTENTS+="\n\nODF converters (oolatex & friends) + require the java use flag." + readme.gentoo_create_doc } pkg_postinst() { - use java || elog 'ODF converters (oolatex & friends) require the java use flag' latex-package_pkg_postinst - elog "In order to avoid collisions with multiple packages" - elog "We are not installing the scripts in /usr/bin anymore" - elog "If you want to use, say, htlatex, you can use 'mk4ht htlatex file'" + readme.gentoo_print_elog }