Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 493382 - app-crypt/gnupg-2.0.22: do not build symcryptrun on AIX too
Summary: app-crypt/gnupg-2.0.22: do not build symcryptrun on AIX too
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Crypto team [DISABLED]
URL:
Whiteboard:
Keywords:
Depends on: 493384
Blocks:
  Show dependency tree
 
Reported: 2013-12-05 12:19 UTC by Michael Haubenwallner (RETIRED)
Modified: 2013-12-05 13:43 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 Michael Haubenwallner (RETIRED) gentoo-dev 2013-12-05 12:19:32 UTC
Same as for Solaris, symcryptrun does not build on AIX.

Not sure how else to combine - this one feels quite obviously readable:

Thank you!

--- gnupg-2.0.22.ebuild
+++ gnupg-2.0.22.ebuild
@@ -78,6 +78,12 @@
                myconf+=( --disable-scdaemon )
        fi
 
+       if use elibc_SunOS || use elibc_AIX; then
+               myconf+=( --disable-symcryptrun )
+       else
+               myconf+=( --enable-symcryptrun )
+       fi
+
        econf \
                --docdir="${EPREFIX}/usr/share/doc/${PF}" \
                --enable-gpg \
@@ -86,7 +92,6 @@
                "${myconf[@]}" \
                $(use_with adns) \
                $(use_enable bzip2) \
-               $(use_enable !elibc_SunOS symcryptrun) \
                $(use_enable nls) \
                $(use_enable mta mailto) \
                $(use_enable ldap) \
Comment 1 Alon Bar-Lev (RETIRED) gentoo-dev 2013-12-05 13:43:06 UTC
Thanks! fixed.