Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 341119 - dev-libs/cryptlib-3.3.3-r1 fails with USE=doc (ewdoc: command not found)
Summary: dev-libs/cryptlib-3.3.3-r1 fails with USE=doc (ewdoc: command not found)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Library (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Crypto team [DISABLED]
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-10-15 13:51 UTC by Andrey Grozin
Modified: 2010-10-15 17:25 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 Andrey Grozin gentoo-dev 2010-10-15 13:51:28 UTC
/var/tmp/portage/dev-libs/cryptlib-3.3.3-r1/temp/environment: line 5495: ewdoc: command not found
 * ERROR: dev-libs/cryptlib-3.3.3-r1 failed:
 *   (no error message)
 * 
 * Call stack:
 *     ebuild.sh, line  56:  Called src_install
 *   environment, line 5495:  Called die
 * The specific snippet of code:
 *           ewdoc "${DOC_PREFIX}-manual.pdf" "manual.pdf" || die;


Seems rather natural:
elrond cryptlib # diff -U1 cryptlib-3.3.3.ebuild cryptlib-3.3.3-r1.ebuild
--- cryptlib-3.3.3.ebuild       2010-02-15 01:06:25.000000000 +0600
+++ cryptlib-3.3.3-r1.ebuild    2010-10-13 21:59:47.000000000 +0700
<skipped>
@@ -104,4 +123,6 @@
 
-       dodoc README
-       use doc && newdoc "${DOC_PREFIX}-manual.pdf" "manual.pdf"
+       dodoc README || die
+       if use doc; then
+               ewdoc "${DOC_PREFIX}-manual.pdf" "manual.pdf" || die
+       fi
 }

elrond cryptlib # ewdoc
-su: ewdoc: command not found

So, this ewdoc appeared on

*cryptlib-3.3.3-r1 (13 Oct 2010)

  13 Oct 2010; Dane Smith <c1pher@gentoo.org> +cryptlib-3.3.3-r1.ebuild:
  Revision bump. Address the QA issues wrt bugs #298461 and bug #330289.
  Also
  contains some cosmetic fixes.

What is this ewdoc? To what package does it belong? There should be a doc? dependency on this package.


Reproducible: Always
Comment 1 Diego Elio Pettenò (RETIRED) gentoo-dev 2010-10-15 17:25:03 UTC
Fixed, it was a typo, obviously.