From 8b119a6c8aab5ac6a6b2cb3b79171229be895108 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 7 Aug 2016 18:26:57 -0400 Subject: app-mobilephone/smssend, dev-libs/skyutils: fix SSLv3 support. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In commits 790eacc and ac28332, I added an "sslv3" USE flag to dev-libs/skyutils and revisioned app-mobilephone/smssend to depend on it. This fix was insufficient; any other programs linking to libskyutils would suffer the same problem, as Michał Górny pointed out. Two new revisions of the affected packages remove the "sslv3" option for dev-libs/skyutils, and make it depend on openssl[sslv3] when the user asks for SSL support. Note: this required the removal of LibreSSL support on skyutils. The new revision of app-mobilephone/smssend now depends on the fixed revision of skyutils. An additional fix was made, and now smssend depends on skyutils[ssl]. Without SSL support in libskyutils, many SMS providers simply don't work. Gentoo-Bug: 588326 --- app-mobilephone/smssend/smssend-3.4-r1.ebuild | 31 ------------------------- app-mobilephone/smssend/smssend-3.4-r2.ebuild | 33 +++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 31 deletions(-) delete mode 100644 app-mobilephone/smssend/smssend-3.4-r1.ebuild create mode 100644 app-mobilephone/smssend/smssend-3.4-r2.ebuild (limited to 'app-mobilephone') diff --git a/app-mobilephone/smssend/smssend-3.4-r1.ebuild b/app-mobilephone/smssend/smssend-3.4-r1.ebuild deleted file mode 100644 index 287ac04eec6f..000000000000 --- a/app-mobilephone/smssend/smssend-3.4-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit autotools - -DESCRIPTION="Universal SMS sender" -# Was: http://zekiller.skytech.org/smssend_menu_en.html -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND=">=dev-libs/skyutils-2.7[sslv3]" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${P}-verizon.diff" ) - -src_prepare() { - default - - sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.in \ - || die 'failed to rename AM_CONFIG_HEADER macro' - - eautoreconf -} diff --git a/app-mobilephone/smssend/smssend-3.4-r2.ebuild b/app-mobilephone/smssend/smssend-3.4-r2.ebuild new file mode 100644 index 000000000000..be95746e2cd3 --- /dev/null +++ b/app-mobilephone/smssend/smssend-3.4-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="Universal SMS sender" +# Was: http://zekiller.skytech.org/smssend_menu_en.html +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +# -r5 of skyutils fixes a runtime crash, bug 588326. +# Without SSL support in skyutils, some providers fail. +DEPEND=">=dev-libs/skyutils-2.8-r5[ssl]" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-verizon.diff" ) + +src_prepare() { + default + + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.in \ + || die 'failed to rename AM_CONFIG_HEADER macro' + + eautoreconf +} -- cgit v1.2.3-65-gdbad