Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 22234 - (emacs) emacs ilisp ebuild does not install texinfo manual
Summary: (emacs) emacs ilisp ebuild does not install texinfo manual
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Matthew Kennedy (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-04 16:16 UTC by Anthony Ventimiglia
Modified: 2003-08-28 14:23 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 Anthony Ventimiglia 2003-06-04 16:16:42 UTC
The ilisp ebuild does make or install the texinfo docs, I have a patch here which will fix 
this. 

Reproducible: Always
Steps to Reproduce:
1. emerge app-emacs/ilisp 
2. info ilisp 
3. 
Actual Results:  
Info node was not found 

Expected Results:  
 Info node should be installed
Comment 1 Anthony Ventimiglia 2003-06-04 16:19:55 UTC
 diff -Naur /usr/portage/app-emacs/ilisp/ChangeLog ilisp/ChangeLog 
--- /usr/portage/app-emacs/ilisp/ChangeLog      2003-04-08 10:38:29.000000000 -0400 
+++ ilisp/ChangeLog     2003-06-04 17:08:44.000000000 -0400 
@@ -2,8 +2,13 @@ 
 # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 
 # $Header: /home/cvsroot/gentoo-x86/app-emacs/ilisp/ChangeLog,v 1.4 2003/04/08 14:38:29 
mkennedy Exp $ 
 
+ 
 *ilisp-5.12.0-r1 (15 Dec 2002) 
 
+  04 Jun 2003; Anthony Ventimiglia <anthony@ventimilgia.org> 
+  ilisp-5.12.0-r1.ebuild: make and install texinfo manual. 
+ 
+ 
   08 Apr 2003; Matthew Kennedy <mkennedy@gentoo.org> files/50ilisp-gentoo.el: 
   corrected path for cmulisp 
 
diff -Naur /usr/portage/app-emacs/ilisp/ilisp-5.12.0-r1.ebuild ilisp/ilisp-5.12.0-r1.ebuild 
--- /usr/portage/app-emacs/ilisp/ilisp-5.12.0-r1.ebuild 2003-06-04 17:02:48.000000000 -0400 
+++ ilisp/ilisp-5.12.0-r1.ebuild        2003-06-04 17:18:55.000000000 -0400 
@@ -24,6 +24,8 @@ 
        do 
                emacs -batch -eval "(byte-compile-file \"$i\")" 
        done 
+       cd ../docs 
+       make info 
 } 
 
 src_install() { 
@@ -31,6 +33,7 @@ 
        elisp-install ${PN}/extra extra/*.el extra/*.elc 
        elisp-site-file-install ${FILESDIR}/50ilisp-gentoo.el 
        dodoc ACKNOWLEDGMENTS COPYING GETTING-ILISP HISTORY INSTALLATION 
README Welcome 
+       doinfo docs/ilisp.info* 
 } 
 
 pkg_postinst() { 
 
Comment 2 Matthew Kennedy (RETIRED) gentoo-dev 2003-08-28 14:23:24 UTC
fixed in -r3 along with a new minor version update/sync with debian from cvs.  thanks for the bug report.