summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2016-08-07 18:26:57 -0400
committerMichael Orlitzky <mjo@gentoo.org>2016-08-07 18:32:19 -0400
commit8b119a6c8aab5ac6a6b2cb3b79171229be895108 (patch)
tree2d3cb48bd5be7e84f5eb72e7185c017bb61560d4 /app-mobilephone/smssend/smssend-3.4-r1.ebuild
parentmedia-gfx/imagemagick: Bump to versions 6.9.5.5 and 7.0.2.7 (diff)
downloadgentoo-8b119a6c8aab5ac6a6b2cb3b79171229be895108.tar.gz
gentoo-8b119a6c8aab5ac6a6b2cb3b79171229be895108.tar.bz2
gentoo-8b119a6c8aab5ac6a6b2cb3b79171229be895108.zip
app-mobilephone/smssend, dev-libs/skyutils: fix SSLv3 support.
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
Diffstat (limited to 'app-mobilephone/smssend/smssend-3.4-r1.ebuild')
-rw-r--r--app-mobilephone/smssend/smssend-3.4-r1.ebuild31
1 files changed, 0 insertions, 31 deletions
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
-}