diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 11:47:07 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 11:47:07 +0000 |
commit | 64ba3e1943af0234011db99e9d06ac815994ffbe (patch) | |
tree | 8311486fa728a4d3ed563f660f90969436db32ff /dev-util/kscope | |
parent | Cleanup (diff) | |
download | gentoo-2-64ba3e1943af0234011db99e9d06ac815994ffbe.tar.gz gentoo-2-64ba3e1943af0234011db99e9d06ac815994ffbe.tar.bz2 gentoo-2-64ba3e1943af0234011db99e9d06ac815994ffbe.zip |
Version bump wrt #283126, thanks to Dennis Schridde for reporting.
(Portage version: 2.2_rc44/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/kscope')
-rw-r--r-- | dev-util/kscope/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/kscope/kscope-1.9.4.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-util/kscope/ChangeLog b/dev-util/kscope/ChangeLog index 6fe93b97a722..b95441feaae9 100644 --- a/dev-util/kscope/ChangeLog +++ b/dev-util/kscope/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/kscope # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/kscope/ChangeLog,v 1.46 2009/07/19 16:10:04 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/kscope/ChangeLog,v 1.47 2009/10/12 11:47:07 ssuominen Exp $ + +*kscope-1.9.4 (12 Oct 2009) + + 12 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> +kscope-1.9.4.ebuild: + Version bump wrt #283126, thanks to Dennis Schridde for reporting. 19 Jul 2009; Tiago Cunha <tcunha@gentoo.org> -kscope-1.4.2.ebuild, kscope-1.6.2.ebuild: diff --git a/dev-util/kscope/kscope-1.9.4.ebuild b/dev-util/kscope/kscope-1.9.4.ebuild new file mode 100644 index 000000000000..7ce3dc1410cc --- /dev/null +++ b/dev-util/kscope/kscope-1.9.4.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/kscope/kscope-1.9.4.ebuild,v 1.1 2009/10/12 11:47:07 ssuominen Exp $ + +EAPI=2 +inherit multilib qt4 + +DESCRIPTION="KScope is a KDE front-end to Cscope." +HOMEPAGE="http://kscope.sourceforge.net/" +SRC_URI="mirror://sourceforge/kscope/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/qt-core:4 + x11-libs/qt-gui:4 + >=x11-libs/qscintilla-2" +DEPEND="${RDEPEND}" + +MAKEOPTS="${MAKEOPTS} -j1" + +src_prepare() { + sed -i -e "s:/usr/local:/usr:" config || die + sed -i \ + -e "s:/lib:/$(get_libdir):g" \ + core/core.pro cscope/cscope.pro editor/editor.pro || die +} + +src_configure() { + eqmake4 ${PN}.pro +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die + dodoc ChangeLog +} |