commit: 7b7aeb05a33ccb33f3a709548f621538a051e43c Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Wed Feb 18 13:39:53 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Wed Feb 18 13:39:53 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7b7aeb05
sci-biology/ngsview: fix SLOT operators Package-Manager: portage-2.2.17 --- sci-biology/ngsview/ChangeLog | 5 ++++- sci-biology/ngsview/ngsview-0.91.ebuild | 23 +++++++++++++++-------- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/sci-biology/ngsview/ChangeLog b/sci-biology/ngsview/ChangeLog index 9743fd9..231f7fe 100644 --- a/sci-biology/ngsview/ChangeLog +++ b/sci-biology/ngsview/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-biology/ngsview -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 18 Feb 2015; Justin Lecher <[email protected]> ngsview-0.91.ebuild: + sci-biology/ngsview: fix SLOT operators + 16 Sep 2014; Christoph Junghans <[email protected]> ngsview-0.91.ebuild: fixed DESCRIPTION diff --git a/sci-biology/ngsview/ngsview-0.91.ebuild b/sci-biology/ngsview/ngsview-0.91.ebuild index 8e827b1..db0fde6 100644 --- a/sci-biology/ngsview/ngsview-0.91.ebuild +++ b/sci-biology/ngsview/ngsview-0.91.ebuild @@ -1,12 +1,14 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 +inherit qt4-r2 + DESCRIPTION="Display, edit next-gen sequence alignment (BED, BLAST, Eland, mapview processed MAQ, Corona formats)" HOMEPAGE="http://sourceforge.net/projects/ngsview" -SRC_URI="http://sourceforge.net/projects/ngsview/files/ngsview/ngsview-0.91.tar.gz" +SRC_URI="mirror://sourceforge/projects/${PN}/files/${PN}/${P}.tar.gz" # http://ngsview.sourceforge.net/manual.html @@ -15,13 +17,18 @@ SLOT="0" KEYWORDS="" IUSE="" -DEPEND="media-gfx/graphviz - >=sys-libs/db-4.3 - >=dev-qt/qtcore-4" +DEPEND=" + media-gfx/graphviz + sys-libs/db:* + dev-qt/qtcore:4" RDEPEND="${DEPEND}" -src_compile(){ +src_configure(){ + cd src/trapper || die "Cannot cd to src/trapper" + eqmake4 +} + +src_compile() { cd src/trapper || die "Cannot cd to src/trapper" - qmake || die - make || die + default }
