Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 7342 - Small fix for zvbi ebuild
Summary: Small fix for zvbi ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High minor (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-09-01 12:58 UTC by Javier Marcet
Modified: 2002-09-15 05: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 Javier Marcet 2002-09-01 12:58:56 UTC
This is needed because in case gtk-doc is installed, the configure script 
detects it, but later another makefile which has its location hardcoded can't 
find it on gentoo's location (/usr/share instead of /usr/local/share) 
 
diff -ur /portage/media-libs/zvbi/zvbi-0.2.1.ebuild 
portage/media-libs/zvbi/zvbi-0.2.1.ebuild 
--- /portage/media-libs/zvbi/zvbi-0.2.1.ebuild  Wed Aug 14 15:20:47 2002 
+++ portage/media-libs/zvbi/zvbi-0.2.1.ebuild   Sun Sep  1 00:29:20 2002 
@@ -16,7 +16,10 @@ 
 src_compile() { 
 
        econf ${myconf} || die 
+       cp doc/zdoc-scan doc/zdoc-scan.orig 
+       sed -e 's:usr\/local\/share\/gtk-doc:usr\/share\/gtk-doc:' 
doc/zdoc-scan.orig > doc/zdoc-scan 
        emake || die 
+ 
 } 
 
 src_install () {
Comment 1 Spider (RETIRED) gentoo-dev 2002-09-15 05:59:43 UTC
thanks, commited