Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 115909 - digikam-0.8.0-r1 doesn't install docs
Summary: digikam-0.8.0-r1 doesn't install docs
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-17 23:24 UTC by Ed Goforth
Modified: 2006-02-15 07:47 UTC (History)
1 user (show)

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 Goforth 2005-12-17 23:24:16 UTC
There is a typo where P_DOC is referenced as P_POC.  Also, kde_src_install references ${S} directly, so that the docs install is done from the digikam directory instead of the digikam-doc directory.


--- digikam-0.8.0-r1.ebuild     2005-12-18 02:21:56.000000000 -0500
+++ digikam-0.8.0-r1.ebuild.new 2005-12-18 02:21:55.000000000 -0500
@@ -40,12 +40,18 @@
 
 src_compile(){
        kde_src_compile
-       cd ${WORKDIR}/${P_POC}
+       MY_S=${S}
+       S=${WORKDIR}/${P_DOC}
+       cd ${WORKDIR}/${P_DOC}
        kde_src_compile
+       S=${MY_S}
 }
 
 src_install(){
        kde_src_install
+       MY_S=${S}
+       S=${WORKDIR}/${P_DOC}
        cd ${WORKDIR}/${P_DOC}
        kde_src_install
+       S=${MY_S}
 }
Comment 1 Jonas Bergler 2006-01-01 15:10:16 UTC
additionally the docs should be optional via the docs useflag, afterall 3mb of actuall program and 41mb of documentation doesnt quite seem like a automatic choice.
Comment 2 Carsten Lohrke (RETIRED) gentoo-dev 2006-02-15 07:47:05 UTC
Yeah, stupid error. :|  Regarding optional docs, see bug 122265. The latest ebuild is LINGUAS aware, at least.