diff options
author | Markus Meier <maekke@gentoo.org> | 2009-01-17 12:26:35 +0000 |
---|---|---|
committer | Markus Meier <maekke@gentoo.org> | 2009-01-17 12:26:35 +0000 |
commit | 14377b47047950a6046b4abeb563831802a762d5 (patch) | |
tree | 3ba4e412e0058d174dc429f1e0b44b03844d3499 /media-gfx | |
parent | Version bump (#254391). (diff) | |
download | gentoo-2-14377b47047950a6046b4abeb563831802a762d5.tar.gz gentoo-2-14377b47047950a6046b4abeb563831802a762d5.tar.bz2 gentoo-2-14377b47047950a6046b4abeb563831802a762d5.zip |
fix html-doc installation (to make it work inside the application) wrt bug #231599
(Portage version: 2.2_rc22/cvs/Linux 2.6.28 i686)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/qtpfsgui/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/qtpfsgui/qtpfsgui-1.9.2-r1.ebuild | 12 |
2 files changed, 11 insertions, 9 deletions
diff --git a/media-gfx/qtpfsgui/ChangeLog b/media-gfx/qtpfsgui/ChangeLog index 5927008538ed..174ceeefe010 100644 --- a/media-gfx/qtpfsgui/ChangeLog +++ b/media-gfx/qtpfsgui/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/qtpfsgui -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/qtpfsgui/ChangeLog,v 1.10 2008/12/21 21:53:53 maekke Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/qtpfsgui/ChangeLog,v 1.11 2009/01/17 12:26:35 maekke Exp $ + + 17 Jan 2009; Markus Meier <maekke@gentoo.org> qtpfsgui-1.9.2-r1.ebuild: + fix html-doc installation (to make it work inside the application) wrt bug + #231599 21 Dec 2008; Markus Meier <maekke@gentoo.org> qtpfsgui-1.9.2-r1.ebuild: don't pre-strip files, bug #251951 diff --git a/media-gfx/qtpfsgui/qtpfsgui-1.9.2-r1.ebuild b/media-gfx/qtpfsgui/qtpfsgui-1.9.2-r1.ebuild index ecb0cd1ca0fa..e11f0bbe7144 100644 --- a/media-gfx/qtpfsgui/qtpfsgui-1.9.2-r1.ebuild +++ b/media-gfx/qtpfsgui/qtpfsgui-1.9.2-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/qtpfsgui/qtpfsgui-1.9.2-r1.ebuild,v 1.4 2008/12/21 21:53:53 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/qtpfsgui/qtpfsgui-1.9.2-r1.ebuild,v 1.5 2009/01/17 12:26:35 maekke Exp $ EAPI="1" @@ -39,8 +39,9 @@ src_unpack() { # no insane CXXFLAGS sed -i -e '/QMAKE_CXXFLAGS/d' project.pro || die - # no HTML installation by qmake - sed -i -e '/INSTALLS/s:htmls ::' project.pro || die + if ! use doc ; then + sed -i -e '/INSTALLS/s:htmls ::' project.pro || die + fi # no stripping sed -i -e 's:TARGET:QMAKE_STRIP = true\nTARGET:' project.pro || die @@ -55,9 +56,6 @@ src_compile() { src_install() { emake INSTALL_ROOT="${D}" install || die dodoc README TODO || die - if use doc ; then - dohtml -r html/ || die - fi for lang in ${LANGS} ; do use linguas_${lang} || rm "${D}"/usr/share/${PN}/i18n/lang_${lang}.qm |