Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 412427 - net-misc/curl-7.25.0-r1 should have dependencies updated for >=net-libs/gnutls-3
Summary: net-misc/curl-7.25.0-r1 should have dependencies updated for >=net-libs/gnutls-3
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: Normal normal (vote)
Assignee: Anthony Basile
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-04-17 22:01 UTC by Arfrever Frehtes Taifersar Arahesis
Modified: 2012-05-01 18:59 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
curl-7.25.0-r1.ebuild.patch (curl-7.25.0-r1.ebuild.patch,1.58 KB, patch)
2012-04-17 22:01 UTC, Arfrever Frehtes Taifersar Arahesis
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Arfrever Frehtes Taifersar Arahesis 2012-04-17 22:01:38 UTC
Created attachment 309327 [details, diff]
curl-7.25.0-r1.ebuild.patch

net-misc/curl-7.25.0-r1 contains some code related to net-libs/gnutls. >=net-libs/gnutls-3 supports only Nettle, so it doesn't have "nettle" USE flag. I'm attaching the patch.
Comment 1 Anthony Basile gentoo-dev 2012-05-01 13:52:41 UTC
Fixed.  BTW, gnutls-3 does not autoreconf with autoconf-2.68.  It is AC_PREREQ(2.61).
Comment 2 Arfrever Frehtes Taifersar Arahesis 2012-05-01 18:59:03 UTC
autotools.eclass contains:

if [[ -n ${WANT_AUTOCONF} ]] ; then
    case ${WANT_AUTOCONF} in
        none)       _autoconf_atom="" ;; # some packages don't require autoconf at all
        2.1)        _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;;
        # if you change the "latest" version here, change also autotools_env_setup
        latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.68" ;;
        *)          die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;;
    esac
    export WANT_AUTOCONF
fi