summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2013-11-19 12:26:09 +0000
committerSergey Popov <pinkbyte@gentoo.org>2013-11-19 12:26:09 +0000
commit75c71ae7da76815e84c4f91a27d54b8505cf50d7 (patch)
tree0c7a17880a830870e4f61e6699d9a0e812f096c3 /dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild
parentVersion bump (diff)
downloadgentoo-2-75c71ae7da76815e84c4f91a27d54b8505cf50d7.tar.gz
gentoo-2-75c71ae7da76815e84c4f91a27d54b8505cf50d7.tar.bz2
gentoo-2-75c71ae7da76815e84c4f91a27d54b8505cf50d7.zip
Proper fix for respecting LDFLAGS by Julian Ospald, bug #491602
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild')
-rw-r--r--dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild9
1 files changed, 4 insertions, 5 deletions
diff --git a/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild b/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild
index 879ecc824bf1..29c3ec57a886 100644
--- a/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild
+++ b/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild,v 1.2 2013/11/18 13:43:42 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cx_Freeze/cx_Freeze-4.3.1-r2.ebuild,v 1.3 2013/11/19 12:26:09 pinkbyte Exp $
EAPI="5"
@@ -17,7 +17,6 @@ KEYWORDS="amd64 x86"
DOCS=( README.txt )
-python_prepare() {
- # do not strip binaries, respect LDFLAGS
- sed -i -e '/extraArgs.append("-s")/s/extraArgs.append("-s")/extraArgs.extend(vars["LDFLAGS"].split())/' setup.py || die 'sed on setup.py failed'
-}
+PATCHES=(
+ "${FILESDIR}/${P}-buildsystem.patch" # bug #491602
+)