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

Bug 519288

Summary: sci-misc/nco-4.4.2 - `myconfargs' should be `myeconfargs'
Product: Gentoo Linux Reporter: Casper Ti. Vector <CasperVector>
Component: Current packagesAssignee: Gentoo Science Related Packages <sci>
Status: RESOLVED FIXED    
Severity: normal Keywords: PATCH
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Bug Depends on:    
Bug Blocks: 518106    

Description Casper Ti. Vector 2014-08-07 05:46:09 UTC
(Originally reported in bug #518106; now reported as separate bugs after consulting devs on #gentoo at freenode.)

As the title says.  Eclasses only provided the `myeconfargs' interface, not `myconfargs'.  Affected ebuild(s) do not seem to use `myconfargs' side by side with `myeconfargs' on purpose, so this is probably a typo.

Following is the patch:

--- /usr/portage/sci-misc/nco/nco-4.4.2.ebuild	2014-03-19 03:31:33.000000000 +0800
+++ -	2014-08-07 13:45:12.717788172 +0800
@@ -38,7 +38,7 @@
 		myeconfargs+=( --enable-netcdf4 )
 		append-cppflags -DHAVE_NETCDF4_H
 	else
-		myconfargs+=( --disable-netcdf4 )
+		myeconfargs+=( --disable-netcdf4 )
 	fi
 	autotools-utils_src_configure
 }
Comment 1 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2014-08-07 16:46:11 UTC
+  07 Aug 2014; Michał Górny <mgorny@gentoo.org> nco-4.4.2.ebuild:
+  Fix myconfargs typo, bug #519288.