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 7C6431382C5 for ; Fri, 4 Jun 2021 19:40:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB33DE0822; Fri, 4 Jun 2021 19:40:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9836AE0822 for ; Fri, 4 Jun 2021 19:40:31 +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 140A5335DB6 for ; Fri, 4 Jun 2021 19:40:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3803573A for ; Fri, 4 Jun 2021 19:40:28 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1622835542.43d663de10b438732b69882326a7088f5e07cad9.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tidy-html5/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/tidy-html5/tidy-html5-5.7.28-r1.ebuild X-VCS-Directories: app-text/tidy-html5/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 43d663de10b438732b69882326a7088f5e07cad9 X-VCS-Branch: master Date: Fri, 4 Jun 2021 19:40:28 +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: 127c2e46-ebd8-418d-9248-b102d4ea07f8 X-Archives-Hash: 1c8263b34d2f3770964a702ddcdc88cb commit: 43d663de10b438732b69882326a7088f5e07cad9 Author: Mike Frysinger chromium org> AuthorDate: Fri Jun 4 19:37:12 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Jun 4 19:39:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43d663de app-text/tidy-html5: fix self linkage Don't statically link the libtidy library into the tidy program. This saves a lot of space. Signed-off-by: Mike Frysinger gentoo.org> app-text/tidy-html5/tidy-html5-5.7.28-r1.ebuild | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/app-text/tidy-html5/tidy-html5-5.7.28-r1.ebuild b/app-text/tidy-html5/tidy-html5-5.7.28-r1.ebuild new file mode 100644 index 00000000000..f3f78ced3ce --- /dev/null +++ b/app-text/tidy-html5/tidy-html5-5.7.28-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Tidy the layout and correct errors in HTML, HTML5 and XML documents" +HOMEPAGE="https://www.html-tidy.org/" +SRC_URI="https://github.com/htacg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +RDEPEND="!app-text/htmltidy" + +DOCS=( README/{CODESTYLE,CONTRIBUTING,LICENSE,VERSION}.md ) + +src_configure() { + local mycmakeargs=( + -DTIDY_CONSOLE_SHARED=yes + -DLIB_INSTALL_DIR="$(get_libdir)" + ) + cmake_src_configure +}