diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-12-16 21:03:48 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-12-16 21:03:48 +0000 |
commit | f728160b0593979d76d7ed4b445afb5ffe57529f (patch) | |
tree | 174aaf0e4d2b616936d55c20616ba04d043ea2c2 /x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild | |
parent | Initial add, bug #74236 (diff) | |
download | historical-f728160b0593979d76d7ed4b445afb5ffe57529f.tar.gz historical-f728160b0593979d76d7ed4b445afb5ffe57529f.tar.bz2 historical-f728160b0593979d76d7ed4b445afb5ffe57529f.zip |
Fix doc installation.
Diffstat (limited to 'x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild')
-rw-r--r-- | x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild b/x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild index 1b4c397c0d29..33069c2f1fc9 100644 --- a/x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild +++ b/x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild,v 1.2 2004/12/11 23:45:01 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxmozilla/wxmozilla-0.5.3.ebuild,v 1.3 2004/12/16 21:03:48 kloeri Exp $ inherit eutils libtool @@ -42,6 +42,7 @@ pkg_setup() { src_compile() { elibtoolize + econf `use_enable python` || die "configure failed" emake || die "make failed" } @@ -50,11 +51,10 @@ src_install() { make install DESTDIR=${D} || die "install failed" if use doc; then - insinto /usr/share/doc/${PF} - exeinto /usr/share/doc/${PF} - doins README - newins demo/main.cpp example.cpp - doexe demo/wxMozillaDemo - doins wxPython/demo/*.py + dodoc README + newdoc demo/main.cpp example.cpp + if use python; then + dodoc wxPython/demo/*.py + fi fi } |