diff options
-rw-r--r-- | dev-libs/keybinder/keybinder-0.3.2-r300.ebuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild index a62c8c1c0c78..d12fc21e838b 100644 --- a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild +++ b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild @@ -29,12 +29,18 @@ S=${WORKDIR}/${MY_P} src_configure() { econf \ - $(use_enable introspection) \ - --with-html-dir="${EPREFIX}/usr/share/doc/${PF}/html" + $(use_enable introspection) } src_install() { default prune_libtool_files --all - dosym /usr/share/doc/${PF}/html/${PN}-3.0 /usr/share/gtk-doc/html/${PN}-3.0 +} + +pkg_preinst() { + # remove old symlink as otherwise the files will be installed + # in the wrong directory + if [[ -h ${EROOT%/}/usr/share/gtk-doc/html/keybinder-3.0 ]]; then + rm "${EROOT%/}/usr/share/gtk-doc/html/keybinder-3.0" || die + fi } |