First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 117011
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: media-gfx herd <graphics@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Chris Mayo <mayo@clara.co.uk>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 117011 depends on: Show dependency tree
Bug 117011 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2005-12-28 11:54 0000
graphviz-2.6 installs docs in /usr/share/graphviz/doc/ and
/usr/share/doc/graphviz-2.6/. It also creates an extra doc level for html files
/usr/share/doc/graphviz-2.6/html/doc, which breaks some of the links in
html/index.html. Zipping the pdf's also breaks links from index.html. This can
all be made consistent by changing src_install to:

src_install() {
        sed -i "s:htmldir:infodir:g" doc/info/Makefile
        make DESTDIR=${D} \
                txtdir=/usr/share/doc/${PF} \
                htmldir=/usr/share/doc/${PF}/html \
                infodir=/usr/share/doc/${PF}/html/info \
                pdfdir=/usr/share/doc/${PF}/pdf \
                pkgconfigdir=/usr/$(get_libdir)/pkgconfig \
                install || die "Install Failed!"
}

------- Comment #1 From Chris Mayo 2006-01-10 09:45:30 0000 -------
Better to rename to htmlinfodir instead of infodir:

src_install() {
        sed -i "s:htmldir:htmlinfodir:g" doc/info/Makefile
        make DESTDIR=${D} \
                txtdir=/usr/share/doc/${PF} \
                htmldir=/usr/share/doc/${PF}/html \
                htmlinfodir=/usr/share/doc/${PF}/html/info \
                pdfdir=/usr/share/doc/${PF}/pdf \
                pkgconfigdir=/usr/$(get_libdir)/pkgconfig \
                install || die "Install Failed!"
}

------- Comment #2 From Marcelo Goes 2006-01-22 11:22:43 0000 -------
In cvs. Thanks!

First Last Prev Next    No search results available      Search page      Enter new bug