diff options
author | Thomas Anderson <gentoofan23@gentoo.org> | 2008-07-08 16:51:06 +0000 |
---|---|---|
committer | Thomas Anderson <gentoofan23@gentoo.org> | 2008-07-08 16:51:06 +0000 |
commit | ab16e193e3653b057a8575103457dfda77d8d2c4 (patch) | |
tree | 8d9ffd2f7bfb5f88d43258c51fca2e0843585d8e /sci-geosciences/gebabbel | |
parent | dev-util/jam went away (diff) | |
download | gentoo-2-ab16e193e3653b057a8575103457dfda77d8d2c4.tar.gz gentoo-2-ab16e193e3653b057a8575103457dfda77d8d2c4.tar.bz2 gentoo-2-ab16e193e3653b057a8575103457dfda77d8d2c4.zip |
Migrate to split qt4 dependencies. Keyworded ~amd64, fix quoting and remove spurious die statement
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-geosciences/gebabbel')
-rw-r--r-- | sci-geosciences/gebabbel/ChangeLog | 8 | ||||
-rw-r--r-- | sci-geosciences/gebabbel/gebabbel-0.3.ebuild | 21 |
2 files changed, 14 insertions, 15 deletions
diff --git a/sci-geosciences/gebabbel/ChangeLog b/sci-geosciences/gebabbel/ChangeLog index 4b2abdc6498c..8ded1412f392 100644 --- a/sci-geosciences/gebabbel/ChangeLog +++ b/sci-geosciences/gebabbel/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-geosciences/gebabbel -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/ChangeLog,v 1.1 2007/09/06 19:25:53 hanno Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/ChangeLog,v 1.2 2008/07/08 16:51:06 gentoofan23 Exp $ + + 08 Jul 2008; Thomas Anderson <gentoofan23@gentoo.org> gebabbel-0.3.ebuild: + Migrate to split qt4 dependencies. Keyworded ~amd64, fix quoting and remove + spurious die statement *gebabbel-0.3 (06 Sep 2007) diff --git a/sci-geosciences/gebabbel/gebabbel-0.3.ebuild b/sci-geosciences/gebabbel/gebabbel-0.3.ebuild index b0664cd9b2a1..16b7127c5436 100644 --- a/sci-geosciences/gebabbel/gebabbel-0.3.ebuild +++ b/sci-geosciences/gebabbel/gebabbel-0.3.ebuild @@ -1,30 +1,25 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild,v 1.1 2007/09/06 19:25:53 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild,v 1.2 2008/07/08 16:51:06 gentoofan23 Exp $ -inherit eutils +EAPI="1" +inherit eutils qt4 DESCRIPTION="QT-Frontend to load and convert gps tracks with gpsbabel" HOMEPAGE="http://gebabbel.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/Gebabbel-${PV}-Src.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND=">=x11-libs/qt-4.3.0 +DEPEND="|| ( ( x11-libs/qt-core:4 x11-libs/qt-gui:4 ) >=x11-libs/qt-4.3.0:4 ) sci-geosciences/gpsbabel" S="${WORKDIR}/Gebabbel-${PV}" -pkg_setup() { - if ! built_with_use 'x11-libs/qt' 'accessibility'; then - eerror "You must build qt with accessibility support" - die "x11-libs/qt built without accessibility" - fi -} - +QT4_BUILT_WITH_USE_CHECK="guiaccessibility" src_unpack() { - unpack "${A}" || die + unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-fix.diff" } |