diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-03-02 09:22:52 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-03-02 09:22:52 +0000 |
commit | 6944e0a64eb88b896703ceba3cfd63f48d6a0175 (patch) | |
tree | 8acb349e5fdbdb1e7ded8cc83e4aa80e744e1d44 /app-editors/nvu | |
parent | + /dev/urandom support; also closing bug #168888 (diff) | |
download | gentoo-2-6944e0a64eb88b896703ceba3cfd63f48d6a0175.tar.gz gentoo-2-6944e0a64eb88b896703ceba3cfd63f48d6a0175.tar.bz2 gentoo-2-6944e0a64eb88b896703ceba3cfd63f48d6a0175.zip |
Fix has_version syntax, bug 168892
(Portage version: 2.1.2-r12)
Diffstat (limited to 'app-editors/nvu')
-rw-r--r-- | app-editors/nvu/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/nvu/nvu-1.0-r4.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-editors/nvu/ChangeLog b/app-editors/nvu/ChangeLog index db9c5255e68a..1a3165335932 100644 --- a/app-editors/nvu/ChangeLog +++ b/app-editors/nvu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/nvu # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nvu/ChangeLog,v 1.26 2007/02/12 13:03:29 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nvu/ChangeLog,v 1.27 2007/03/02 09:22:52 armin76 Exp $ + + 02 Mar 2007; Raúl Porcel <armin76@gentoo.org> nvu-1.0-r4.ebuild: + Fix has_version syntax, bug 168892 12 Feb 2007; Raúl Porcel <armin76@gentoo.org> +files/1.0/nvu-1.0-const.patch, -nvu-1.0-r2.ebuild, nvu-1.0-r4.ebuild: diff --git a/app-editors/nvu/nvu-1.0-r4.ebuild b/app-editors/nvu/nvu-1.0-r4.ebuild index 31b2ff66da50..b1bce5fb3430 100644 --- a/app-editors/nvu/nvu-1.0-r4.ebuild +++ b/app-editors/nvu/nvu-1.0-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nvu/nvu-1.0-r4.ebuild,v 1.9 2007/02/12 13:03:29 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nvu/nvu-1.0-r4.ebuild,v 1.10 2007/03/02 09:22:52 armin76 Exp $ inherit eutils mozconfig flag-o-matic multilib @@ -12,7 +12,7 @@ SLOT="0" KEYWORDS="amd64 ppc sparc x86" IUSE="" -DEPEND="|| ( x11-proto/printproto virtual/x11 ) +DEPEND="x11-proto/printproto sys-apps/gawk dev-lang/perl >=media-libs/freetype-2.1.9-r1" @@ -32,7 +32,7 @@ src_unpack() { epatch ${FILESDIR}/1.0/mozilla-1.7.13-as-needed.patch || die "failed to apply as-needed patch" # >freetype-2.1* compile patch #166401 - if has_version '>=media-libs/freetype-2.2*'; then + if has_version '>=media-libs/freetype-2.2'; then epatch "${FILESDIR}/1.0/${P}-const.patch" fi |