diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2018-03-21 23:15:42 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-03-21 23:16:40 +0100 |
commit | f64f6e56951e03a5f82cc6a4a10b3abc0388121f (patch) | |
tree | 823cf588bdd66a5f964e350ca9d401e27efc00eb /app-text/tidy-html5 | |
parent | app-text/texlive-2017: hppa stable (diff) | |
download | gentoo-f64f6e56951e03a5f82cc6a4a10b3abc0388121f.tar.gz gentoo-f64f6e56951e03a5f82cc6a4a10b3abc0388121f.tar.bz2 gentoo-f64f6e56951e03a5f82cc6a4a10b3abc0388121f.zip |
app-text/tidy-html5: enforce library installation in $(get_libdir).
Closes: https://bugs.gentoo.org/567812
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'app-text/tidy-html5')
-rw-r--r-- | app-text/tidy-html5/tidy-html5-5.6.0.ebuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app-text/tidy-html5/tidy-html5-5.6.0.ebuild b/app-text/tidy-html5/tidy-html5-5.6.0.ebuild index 0e36ac1d27d0..84540eb7536d 100644 --- a/app-text/tidy-html5/tidy-html5-5.6.0.ebuild +++ b/app-text/tidy-html5/tidy-html5-5.6.0.ebuild @@ -16,3 +16,10 @@ KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86" RDEPEND="!app-text/htmltidy" DOCS=( README/{CODESTYLE,CONTRIBUTING,LICENSE,VERSION}.md ) + +src_configure() { + local mycmakeargs=( + -DLIB_INSTALL_DIR="$(get_libdir)" + ) + cmake-utils_src_configure +} |