diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-10-15 22:37:23 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-10-15 22:37:23 +0000 |
commit | e8fbd1fe8db0747df2bb436ef6988e79f9dfbd61 (patch) | |
tree | f1ffa5aa37953cc14815027052cd49fa66e9d675 /app-office | |
parent | src_compile removed, it has been the default definition anyway[2~ (diff) | |
download | gentoo-2-e8fbd1fe8db0747df2bb436ef6988e79f9dfbd61.tar.gz gentoo-2-e8fbd1fe8db0747df2bb436ef6988e79f9dfbd61.tar.bz2 gentoo-2-e8fbd1fe8db0747df2bb436ef6988e79f9dfbd61.zip |
use --missing true instead of has_version to detect a supported version of guile
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/gnotime/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/gnotime/gnotime-2.2.3.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/app-office/gnotime/ChangeLog b/app-office/gnotime/ChangeLog index c434ff27b9d8..b61d77615547 100644 --- a/app-office/gnotime/ChangeLog +++ b/app-office/gnotime/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/gnotime # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/ChangeLog,v 1.26 2007/10/15 21:34:16 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/ChangeLog,v 1.27 2007/10/15 22:37:23 opfer Exp $ + + 15 Oct 2007; Christian Faulhammer <opfer@gentoo.org> gnotime-2.2.3.ebuild: + use --missing true instead of has_version to detect a supported version of + guile *gnotime-2.2.3 (15 Oct 2007) diff --git a/app-office/gnotime/gnotime-2.2.3.ebuild b/app-office/gnotime/gnotime-2.2.3.ebuild index 30d137609341..aea21ba9cf6d 100644 --- a/app-office/gnotime/gnotime-2.2.3.ebuild +++ b/app-office/gnotime/gnotime-2.2.3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.2.3.ebuild,v 1.1 2007/10/15 21:34:16 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.2.3.ebuild,v 1.2 2007/10/15 22:37:23 opfer Exp $ -inherit gnome2 autotools +inherit eutils gnome2 autotools DESCRIPTION="A utility for tracking the amount of time spent on activities, and calculating data, such as pay rates, from those times" HOMEPAGE="http://gttr.sourceforge.net/" @@ -42,8 +42,8 @@ G2CONF="${G2CONF} --disable-schemas-install" pkg_setup() { # upstream knows about the fix and has promised to incorporate it - if has_version ">=dev-scheme/guile-1.8" && ! built_with_use dev-scheme/guile deprecated;then + if ! built_with_use --missing true dev-scheme/guile deprecated;then eerror "rebuild dev-scheme/guile with USE=deprecated" die - fi + fi } |