Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 7342

Summary: Small fix for zvbi ebuild
Product: Gentoo Linux Reporter: Javier Marcet <javier-ml-gentoo>
Component: New packagesAssignee: Gentoo Linux Gnome Desktop Team <gnome>
Status: RESOLVED FIXED    
Severity: minor    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
Whiteboard:
Package list:
Runtime testing required: ---

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