summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-12-16 10:32:28 +0000
committerPacho Ramos <pacho@gentoo.org>2014-12-16 10:32:28 +0000
commit50e85367678e025a40a381d466291d02d6ff32cb (patch)
treee82dc885f32929adb288bc09e5a09c80bbc0730f /net-ftp
parentIncorrect and unsafe memory handling (AST-2014-019) in res_http_websocket add... (diff)
downloadgentoo-2-50e85367678e025a40a381d466291d02d6ff32cb.tar.gz
gentoo-2-50e85367678e025a40a381d466291d02d6ff32cb.tar.bz2
gentoo-2-50e85367678e025a40a381d466291d02d6ff32cb.zip
Disable nls support until we find a fix for preventing sandbox violations (#532502 by Toralf Förster)
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/weex/ChangeLog6
-rw-r--r--net-ftp/weex/weex-2.6.1.5-r1.ebuild16
2 files changed, 12 insertions, 10 deletions
diff --git a/net-ftp/weex/ChangeLog b/net-ftp/weex/ChangeLog
index 802b1f42ffda..e480faf94b48 100644
--- a/net-ftp/weex/ChangeLog
+++ b/net-ftp/weex/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-ftp/weex
# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/weex/ChangeLog,v 1.14 2014/08/30 12:18:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/weex/ChangeLog,v 1.15 2014/12/16 10:32:28 pacho Exp $
+
+ 16 Dec 2014; Pacho Ramos <pacho@gentoo.org> weex-2.6.1.5-r1.ebuild:
+ Disable nls support until we find a fix for preventing sandbox violations
+ (#532502 by Toralf Förster)
30 Aug 2014; Michał Górny <mgorny@gentoo.org> weex-2.6.1.5-r1.ebuild:
Replace einstall with emake install, bug #521586.
diff --git a/net-ftp/weex/weex-2.6.1.5-r1.ebuild b/net-ftp/weex/weex-2.6.1.5-r1.ebuild
index 049d5333185a..61d4aec14aad 100644
--- a/net-ftp/weex/weex-2.6.1.5-r1.ebuild
+++ b/net-ftp/weex/weex-2.6.1.5-r1.ebuild
@@ -1,7 +1,8 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/weex/weex-2.6.1.5-r1.ebuild,v 1.3 2014/08/30 12:18:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/weex/weex-2.6.1.5-r1.ebuild,v 1.4 2014/12/16 10:32:28 pacho Exp $
+EAPI=5
inherit eutils
DESCRIPTION="Automates maintaining a web page or other FTP archive"
@@ -11,24 +12,21 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
-IUSE="nls"
+IUSE="" #nls
DEPEND="sys-libs/ncurses"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch "${FILESDIR}/${P}-va_list.patch"
epatch "${FILESDIR}/formatstring.patch"
}
-src_compile() {
- econf $(use_enable nls) || die
- emake || die "emake failed"
+src_configure() {
+ econf --disable-nls #532502
}
src_install() {
- emake DESTDIR="${D}" install || die
+ default
dodoc doc/TODO* doc/README* doc/FAQ* doc/sample* doc/ChangeLog* \
doc/BUG* doc/THANK*
}