Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 93173 - [irda-utils-0.9.16] irdadump does not get installed (with patch)
Summary: [irda-utils-0.9.16] irdadump does not get installed (with patch)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Other
: High normal (vote)
Assignee: Mobile Herd (OBSOLETE)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-19 03:25 UTC by Manolis Tzanidakis
Modified: 2005-05-31 02:36 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 Manolis Tzanidakis 2005-05-19 03:25:57 UTC
irdadump doesn't get installed.

Reproducible: Always
Steps to Reproduce:
1.emerge irda-utils
2.
3.




The following patch fixes it:

--- irda-utils-0.9.16.ebuild    2005-05-18 23:56:53.000000000 +0300
+++ irda-utils-0.9.16-r1.ebuild 2005-05-19 00:02:44.000000000 +0300
@@ -28,6 +28,7 @@
 
 src_compile() {
        export WANT_AUTOMAKE=1.4
+       export WANT_AUTOCONF=2.5
        export RPM_OPT_FLAGS=${CFLAGS}
 
        emake ROOT="${D}" RPM_BUILD_ROOT="${D}" || die "Making failed."
@@ -35,6 +36,9 @@
        cd ${S}/irsockets
        emake || die "Making irsockets failed."
 
+       cd ${S}/irdadump
+       emake || die "Making irdadump failed."
+
        if use gtk; then
                cd ${S}/findchip
                emake gfindchip || die "Making gfindchip failed."
Comment 1 Henrik Brix Andersen 2005-05-19 03:56:29 UTC
Thanks, I'll take a look at it.
Comment 2 Peter Volkov (RETIRED) gentoo-dev 2005-05-28 12:13:12 UTC
I've tried this patch and it works for me. At least irdadump is installed for 
me now. 
 
BTW. Without WANT_AUTOMAKE irda-utils complain about: 
FATAL ERROR: Autoconf version 2.50 or higher is required for this script 
 
Comment 3 Henrik Brix Andersen 2005-05-31 02:36:25 UTC
Fixed in net-wireless/irda-utils-0.9.16-r1.

No need to cd ${S}/irdadump and run emake as this is handled by the Makefile itself.