diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-01-08 19:20:52 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-01-08 19:20:52 +0000 |
commit | 162aac2df1f4b353c1b1606424ba0774f14be83f (patch) | |
tree | 77b9aa5a64734b73b377876e0631ae38bdc7ad22 /sys-libs/gwenhywfar | |
parent | Install Perl modules to vendor-dir wrt #299760, thanks to Torsten Veller for ... (diff) | |
download | gentoo-2-162aac2df1f4b353c1b1606424ba0774f14be83f.tar.gz gentoo-2-162aac2df1f4b353c1b1606424ba0774f14be83f.tar.bz2 gentoo-2-162aac2df1f4b353c1b1606424ba0774f14be83f.zip |
Remove USE="ssl" and always install net-libs/gnutls wrt #295347, thanks to Christian Schmitt for reporting.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/gwenhywfar')
-rw-r--r-- | sys-libs/gwenhywfar/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/gwenhywfar-3.10.1.ebuild | 11 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild | 8 |
3 files changed, 16 insertions, 10 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog index 8704a70948f6..eb5b6aa5321d 100644 --- a/sys-libs/gwenhywfar/ChangeLog +++ b/sys-libs/gwenhywfar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/gwenhywfar # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.77 2010/01/07 10:12:26 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.78 2010/01/08 19:20:52 ssuominen Exp $ + + 08 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> + gwenhywfar-3.10.1.ebuild, gwenhywfar-3.11.3.ebuild: + Remove USE="ssl" and always install net-libs/gnutls wrt #295347, thanks to + Christian Schmitt for reporting. *gwenhywfar-3.11.3 (07 Jan 2010) diff --git a/sys-libs/gwenhywfar/gwenhywfar-3.10.1.ebuild b/sys-libs/gwenhywfar/gwenhywfar-3.10.1.ebuild index 51e1dadf6c7d..1fba951632f3 100644 --- a/sys-libs/gwenhywfar/gwenhywfar-3.10.1.ebuild +++ b/sys-libs/gwenhywfar/gwenhywfar-3.10.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.10.1.ebuild,v 1.3 2010/01/04 13:45:44 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.10.1.ebuild,v 1.4 2010/01/08 19:20:52 ssuominen Exp $ EAPI="2" @@ -11,15 +11,16 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86" -IUSE="debug ssl doc" +IUSE="debug doc" -RDEPEND="ssl? ( net-libs/gnutls )" +RDEPEND="net-libs/gnutls" DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" src_configure() { - econf --enable-visibility \ - $(use_enable ssl) \ + econf \ + --enable-visibility \ + --enable-ssl \ $(use_enable debug) \ $(use_enable doc full-doc) \ --with-docpath="/usr/share/doc/${PF}/apidoc" || die "configure failed" diff --git a/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild b/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild index 96d6b5a43b49..e24a6f27e5c8 100644 --- a/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild +++ b/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild,v 1.1 2010/01/07 10:12:26 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild,v 1.2 2010/01/08 19:20:52 ssuominen Exp $ EAPI=2 @@ -11,16 +11,16 @@ SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=01&release LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="debug ssl doc" +IUSE="debug doc" -RDEPEND="ssl? ( net-libs/gnutls )" +RDEPEND="net-libs/gnutls" DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" src_configure() { econf \ --disable-dependency-tracking \ - $(use_enable ssl) \ + --enable-ssl \ --enable-visibility \ $(use_enable debug) \ $(use_enable doc full-doc) \ |