From: Rob Cakebread Date: Thu, 31 Jul 2008 19:29:47 +0000 (+0000) Subject: Use dodoc instead of doins X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=076c5a924e1e1b6328d5cf3e2869c8f53a45d83e;p=g-pypi.git Use dodoc instead of doins git-svn-id: http://g-pypi.googlecode.com/svn/trunk@13 118783bc-b352-0410-bbc3-0f610f6f7ae8 --- diff --git a/g_pypi/ebuild.py b/g_pypi/ebuild.py index 428ae59..cde41ee 100755 --- a/g_pypi/ebuild.py +++ b/g_pypi/ebuild.py @@ -372,8 +372,7 @@ class Ebuild: src_install += '\tdistutils_src_install\n' if have_docs: src_install += '\tif use doc; then\n' - src_install += '\t\tinsinto /usr/share/doc/"${PF}"\n' - src_install += '\t\tdodocs -r "${S}"/%s/*\n' % have_docs + src_install += '\t\tdodoc "${S}"/%s/*\n' % have_docs src_install += '\tfi\n' if have_examples: src_install += '\tif use examples; then\n'