diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-02-01 17:44:20 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-02-01 17:44:20 +0000 |
commit | 5f50908ecde3ff80e031009ae9a1ad1701914d43 (patch) | |
tree | 15c06f1b25156ae76d02affefdd4300f41d44e4f /x11-libs | |
parent | whitespace (diff) | |
download | gentoo-2-5f50908ecde3ff80e031009ae9a1ad1701914d43.tar.gz gentoo-2-5f50908ecde3ff80e031009ae9a1ad1701914d43.tar.bz2 gentoo-2-5f50908ecde3ff80e031009ae9a1ad1701914d43.zip |
Revbump which changes installation paths according to upstream recommendations. Thanks to Davide Pesavento
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/qscintilla/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/qscintilla/qscintilla-2.4.2-r1.ebuild | 65 |
2 files changed, 73 insertions, 1 deletions
diff --git a/x11-libs/qscintilla/ChangeLog b/x11-libs/qscintilla/ChangeLog index 1639bee1f187..1a07b35de0a9 100644 --- a/x11-libs/qscintilla/ChangeLog +++ b/x11-libs/qscintilla/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-libs/qscintilla # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.42 2010/01/21 21:14:38 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.43 2010/02/01 17:44:20 hwoarang Exp $ + +*qscintilla-2.4.2-r1 (01 Feb 2010) + + 01 Feb 2010; Markos Chandras <hwoarang@gentoo.org> + +qscintilla-2.4.2-r1.ebuild: + Revbump which changes installation paths according to upstream + recommendations. Thanks to Davide Pesavento *qscintilla-2.4.2 (21 Jan 2010) diff --git a/x11-libs/qscintilla/qscintilla-2.4.2-r1.ebuild b/x11-libs/qscintilla/qscintilla-2.4.2-r1.ebuild new file mode 100644 index 000000000000..b436400bdd9f --- /dev/null +++ b/x11-libs/qscintilla/qscintilla-2.4.2-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.2-r1.ebuild,v 1.1 2010/02/01 17:44:20 hwoarang Exp $ + +EAPI="2" + +inherit qt4-r2 + +MY_P="QScintilla-gpl-${PV/_pre/-snapshot-}" + +DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class" +HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro" +SRC_URI="http://www.riverbankcomputing.co.uk/static/Downloads/QScintilla2/${MY_P}.tar.gz" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="doc python" + +DEPEND="x11-libs/qt-gui:4" +RDEPEND="${DEPEND}" +PDEPEND="python? ( ~dev-python/qscintilla-python-${PV} )" + +S=${WORKDIR}/${MY_P} + +PATCHES=( "${FILESDIR}/${PN}-2.4-designer.patch" ) + +src_configure() { + cd "${S}"/Qt4 + einfo "Configuring qscintilla" + eqmake4 qscintilla.pro + + cd "${S}"/designer-Qt4 + einfo "Configuring designer plugin" + eqmake4 designer.pro +} + +src_compile() { + cd "${S}"/Qt4 + einfo "Building qscintilla" + emake || die "failed to build qscintilla" + + cd "${S}"/designer-Qt4 + einfo "Building designer plugin" + emake || die "failed to build designer plugin" +} + +src_install() { + cd "${S}"/Qt4 + einfo "Installing qscintilla" + emake INSTALL_ROOT="${D}" install || die "failed to install qscintilla" + + cd "${S}"/designer-Qt4 + einfo "Installing designer plugin" + emake INSTALL_ROOT="${D}" install || die "failed to install designer plugin" + + cd "${S}" + dodoc ChangeLog NEWS + if use doc; then + einfo "Installing documentation" + dohtml doc/html-Qt4/* || die + insinto /usr/share/doc/${PF}/Scintilla + doins doc/Scintilla/* || die + fi +} |