diff options
author | 2009-05-07 13:26:39 +0000 | |
---|---|---|
committer | 2009-05-07 13:26:39 +0000 | |
commit | 94acb5c54c86f7764b930b17ed8487428377b7f6 (patch) | |
tree | d22ba4a2a030b45bafb24309ebd2c3af3c56215f /app-shells/zsh | |
parent | version bump of 2.x series, fixed 1.x series SRC_URI, added upstream readme (diff) | |
download | gentoo-2-94acb5c54c86f7764b930b17ed8487428377b7f6.tar.gz gentoo-2-94acb5c54c86f7764b930b17ed8487428377b7f6.tar.bz2 gentoo-2-94acb5c54c86f7764b930b17ed8487428377b7f6.zip |
Don't build gdbm module if USE=-gdbm for a non-dynamic zsh (#268926)
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'app-shells/zsh')
-rw-r--r-- | app-shells/zsh/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.3.9.ebuild | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app-shells/zsh/ChangeLog b/app-shells/zsh/ChangeLog index dc3f7a31a1bc..c5b5c4a67ed5 100644 --- a/app-shells/zsh/ChangeLog +++ b/app-shells/zsh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/zsh -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.143 2009/03/22 19:37:28 armin76 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.144 2009/05/07 13:26:39 tove Exp $ + + 07 May 2009; Torsten Veller <tove@gentoo.org> zsh-4.3.9.ebuild: + Don't build gdbm module if USE=-gdbm for a non-dynamic zsh (#268926) 22 Mar 2009; Raúl Porcel <armin76@gentoo.org> zsh-4.3.9.ebuild: arm/ia64/s390/sh/sparc stable wrt #261488 diff --git a/app-shells/zsh/zsh-4.3.9.ebuild b/app-shells/zsh/zsh-4.3.9.ebuild index 460fe4c3f655..b03893ea2d05 100644 --- a/app-shells/zsh/zsh-4.3.9.ebuild +++ b/app-shells/zsh/zsh-4.3.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.9.ebuild,v 1.8 2009/03/22 19:37:28 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.9.ebuild,v 1.9 2009/05/07 13:26:39 tove Exp $ # doc package for -dev version exists? doc_available=true @@ -100,6 +100,10 @@ src_compile() { -e 's/cap.mdd link=static/cap.mdd link=no/' \ -e 's/curses.mdd link=static/curses.mdd link=no/' \ config.modules || die + if ! use gdbm ; then + sed -i 's/gdbm.mdd link=static/gdbm.mdd link=no/' \ + config.modules || die + fi # else # sed -i -e "/LIBS/s%-lpcre%/usr/$(get_libdir)/libpcre.a%" Makefile fi |