summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-12-02 21:31:19 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-12-02 21:31:19 +0000
commitebbacff645d49e25a16aa8e046b0f53b396a79a6 (patch)
treea880782e3802298a2d40087e67d26eb39d9d442f /app-portage
parentcvs ebuild, hardmasked, thanks to mueli@g.o (diff)
downloadgentoo-2-ebbacff645d49e25a16aa8e046b0f53b396a79a6.tar.gz
gentoo-2-ebbacff645d49e25a16aa8e046b0f53b396a79a6.tar.bz2
gentoo-2-ebbacff645d49e25a16aa8e046b0f53b396a79a6.zip
Fix type in configure, patch by Martin Väth(upstream)
(Portage version: 2.1.7.4/cvs/Linux x86_64)
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/eix/ChangeLog8
-rw-r--r--app-portage/eix/eix-0.19.0-r1.ebuild (renamed from app-portage/eix/eix-0.19.0.ebuild)9
-rw-r--r--app-portage/eix/files/eix-0.19.0-security.patch20
3 files changed, 33 insertions, 4 deletions
diff --git a/app-portage/eix/ChangeLog b/app-portage/eix/ChangeLog
index af2973a19804..dd3e90a4a768 100644
--- a/app-portage/eix/ChangeLog
+++ b/app-portage/eix/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-portage/eix
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.310 2009/12/01 01:10:23 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.311 2009/12/02 21:31:18 darkside Exp $
+
+*eix-0.19.0-r1 (02 Dec 2009)
+
+ 02 Dec 2009; Jeremy Olexa <darkside@gentoo.org> -eix-0.19.0.ebuild,
+ +eix-0.19.0-r1.ebuild, +files/eix-0.19.0-security.patch:
+ Fix type in configure, patch by Martin Väth(upstream)
*eix-0.19.0 (01 Dec 2009)
diff --git a/app-portage/eix/eix-0.19.0.ebuild b/app-portage/eix/eix-0.19.0-r1.ebuild
index 4a3893a33394..642b36571e70 100644
--- a/app-portage/eix/eix-0.19.0.ebuild
+++ b/app-portage/eix/eix-0.19.0-r1.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.19.0.ebuild,v 1.1 2009/12/01 01:10:23 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.19.0-r1.ebuild,v 1.1 2009/12/02 21:31:18 darkside Exp $
-EAPI="2"
+EAPI=2
-inherit multilib autotools
+inherit multilib eutils
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://eix.sourceforge.net"
@@ -34,6 +34,9 @@ src_unpack() {
done
}
+# Fixed in next release.
+src_prepare() { epatch "${FILESDIR}/${P}-security.patch"; }
+
src_configure() {
econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \
$(use_enable nls) $(use_enable tools separate-tools) \
diff --git a/app-portage/eix/files/eix-0.19.0-security.patch b/app-portage/eix/files/eix-0.19.0-security.patch
new file mode 100644
index 000000000000..618632090c73
--- /dev/null
+++ b/app-portage/eix/files/eix-0.19.0-security.patch
@@ -0,0 +1,20 @@
+--- configure
++++ configure
+@@ -3792,7 +3792,6 @@
+ *) :
+ as_fn_error "bad value ${enableval} for --enable-security" "$LINENO" 5 ;;
+ esac
+- security=
+ cmt_security="on request"
+ else
+ security=false
+--- configure.ac
++++ configure.ac
+@@ -101,7 +101,6 @@
+ [AS_HELP_STRING([--disable-security],
+ [do not append security relevant options to flags])],
+ [MV_ENABLE([security])
+- AS_VAR_SET([security], [])
+ AS_VAR_SET([cmt_security], ["on request"])],
+ [AS_VAR_SET([security], [false])
+ AS_VAR_SET([cmt_security], ["default"])])