diff options
author | Lukasz Strzygowski <lucass@gentoo.org> | 2006-08-01 17:16:06 +0000 |
---|---|---|
committer | Lukasz Strzygowski <lucass@gentoo.org> | 2006-08-01 17:16:06 +0000 |
commit | d84b6ff9b33d20b4cd3e963d2737a150b4478ee2 (patch) | |
tree | 3a19dd624c11938034dcf4f4b59bbb253ff8aa8f /dev-python | |
parent | Version bump. Add patch to stop the makefile from stripping binaries (bug #13... (diff) | |
download | gentoo-2-d84b6ff9b33d20b4cd3e963d2737a150b4478ee2.tar.gz gentoo-2-d84b6ff9b33d20b4cd3e963d2737a150b4478ee2.tar.bz2 gentoo-2-d84b6ff9b33d20b4cd3e963d2737a150b4478ee2.zip |
Fix for bug #134873.
(Portage version: 2.1.1_pre4)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/psycopg/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/psycopg/psycopg-1.1.21.ebuild | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/dev-python/psycopg/ChangeLog b/dev-python/psycopg/ChangeLog index 28e95fd74f5a..6483a1ee282e 100644 --- a/dev-python/psycopg/ChangeLog +++ b/dev-python/psycopg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/psycopg # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.40 2006/07/31 13:50:44 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.41 2006/08/01 17:16:06 lucass Exp $ + + 01 Aug 2006; Lukasz Strzygowski <lucass@gentoo.org> psycopg-1.1.21.ebuild: + Fix for bug #134873. 31 Jul 2006; Tom Gall <tgall@gentoo.org> psycopg-2.0.2.ebuild, psycopg-1.1.21.ebuild: diff --git a/dev-python/psycopg/psycopg-1.1.21.ebuild b/dev-python/psycopg/psycopg-1.1.21.ebuild index 81b64c71ff5d..05e8e8e753aa 100644 --- a/dev-python/psycopg/psycopg-1.1.21.ebuild +++ b/dev-python/psycopg/psycopg-1.1.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21.ebuild,v 1.4 2006/07/31 15:27:17 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21.ebuild,v 1.5 2006/08/01 17:16:06 lucass Exp $ inherit python @@ -17,6 +17,14 @@ KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86" LICENSE="GPL-2" IUSE="" +src_unpack() { + unpack "${A}" + cd "${S}" + + # fix for bug #134873 + sed -e '1245s/static //' -i cursor.c +} + src_compile() { python_version econf \ |