Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tidy-html5/
Date: Wed, 21 Mar 2018 22:16:50
Message-Id: 1521670600.f64f6e56951e03a5f82cc6a4a10b3abc0388121f.monsieurp@gentoo
1 commit: f64f6e56951e03a5f82cc6a4a10b3abc0388121f
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 21 22:15:42 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 21 22:16:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f64f6e56
7
8 app-text/tidy-html5: enforce library installation in $(get_libdir).
9
10 Closes: https://bugs.gentoo.org/567812
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 app-text/tidy-html5/tidy-html5-5.6.0.ebuild | 7 +++++++
14 1 file changed, 7 insertions(+)
15
16 diff --git a/app-text/tidy-html5/tidy-html5-5.6.0.ebuild b/app-text/tidy-html5/tidy-html5-5.6.0.ebuild
17 index 0e36ac1d27d..84540eb7536 100644
18 --- a/app-text/tidy-html5/tidy-html5-5.6.0.ebuild
19 +++ b/app-text/tidy-html5/tidy-html5-5.6.0.ebuild
20 @@ -16,3 +16,10 @@ KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
21 RDEPEND="!app-text/htmltidy"
22
23 DOCS=( README/{CODESTYLE,CONTRIBUTING,LICENSE,VERSION}.md )
24 +
25 +src_configure() {
26 + local mycmakeargs=(
27 + -DLIB_INSTALL_DIR="$(get_libdir)"
28 + )
29 + cmake-utils_src_configure
30 +}