Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 105511 - pygtk should install docs to gtk-doc
Summary: pygtk should install docs to gtk-doc
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-10 11:22 UTC by Ed Catmur
Modified: 2005-09-11 17:59 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ed Catmur 2005-09-10 11:22:48 UTC
Merging pygtk with USE="doc", it installs the docs to /usr/share/doc/$P/html. As
they are gtk-doc docs, they should be installed to /usr/share/gtk-doc/html/$PN.
(This will ensure they show up in devhelp).

Use:
	if use doc; then
		cd ${S}/../pygtk2reference
		dodir /usr/share/gtk-doc/html/${PN}
		cp -pPR * ${D}/usr/share/gtk-doc/html/${PN}/
	fi
Comment 1 Ed Catmur 2005-09-10 12:16:25 UTC
Sorry, forgot the directory name has to be same as devhelp file.
Should be:

    if use doc; then
        cd ${S}/../
        dodir /usr/share/gtk-doc/html
        cp -pPR pygtk2reference ${D}/usr/share/gtk-doc/html/
    fi
Comment 2 John N. Laliberte (RETIRED) gentoo-dev 2005-09-11 17:59:50 UTC
in CVS with 2.8.0, thanks!