diff options
author | 2010-01-21 21:14:38 +0000 | |
---|---|---|
committer | 2010-01-21 21:14:38 +0000 | |
commit | 17dfc4671398e1beed76610bddcaf1fa40ac9c17 (patch) | |
tree | 5b782baf1950f31b65305f65ac477c58ce6ef9a5 | |
parent | Version bump (diff) | |
download | gentoo-2-17dfc4671398e1beed76610bddcaf1fa40ac9c17.tar.gz gentoo-2-17dfc4671398e1beed76610bddcaf1fa40ac9c17.tar.bz2 gentoo-2-17dfc4671398e1beed76610bddcaf1fa40ac9c17.zip |
Version bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
-rw-r--r-- | x11-libs/qscintilla/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qscintilla/qscintilla-2.4.2.ebuild | 84 |
2 files changed, 90 insertions, 1 deletions
diff --git a/x11-libs/qscintilla/ChangeLog b/x11-libs/qscintilla/ChangeLog index f83a9b453a49..1639bee1f187 100644 --- a/x11-libs/qscintilla/ChangeLog +++ b/x11-libs/qscintilla/ChangeLog @@ -1,6 +1,11 @@ # 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.41 2010/01/17 23:11:45 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.42 2010/01/21 21:14:38 hwoarang Exp $ + +*qscintilla-2.4.2 (21 Jan 2010) + + 21 Jan 2010; <hwoarang@gentoo.org> +qscintilla-2.4.2.ebuild: + Version bump 17 Jan 2010; Ben de Groot <yngwin@gentoo.org> qscintilla-2.4.1.ebuild: Add some einfo messages to prevent confusing output. diff --git a/x11-libs/qscintilla/qscintilla-2.4.2.ebuild b/x11-libs/qscintilla/qscintilla-2.4.2.ebuild new file mode 100644 index 000000000000..a6c9beb2ed9c --- /dev/null +++ b/x11-libs/qscintilla/qscintilla-2.4.2.ebuild @@ -0,0 +1,84 @@ +# 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.ebuild,v 1.1 2010/01/21 21:14:38 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 all staticlib || die "emake failed" + + cd "${S}"/designer-Qt4 + einfo "Building designer plugin" + emake || die "failed to build designer plugin" +} + +src_install() { + cd "${S}"/Qt4 + + # header files + insinto /usr/include/Qsci + doins Qsci/*.h || die + + # libraries + dolib.so libqscintilla2.so* || die + dolib.a libqscintilla2.a || die + + # translations + insinto /usr/share/${PN}/translations + for trans in qscintilla_*.qm; do + doins ${trans} || die + dosym /usr/share/${PN}/translations/${trans} \ + /usr/share/qt4/translations/${trans} || die + done + + # designer plugin + cd "${S}"/designer-Qt4 + emake INSTALL_ROOT="${D}" install || die "designer plugin installation failed" + + # documentation + cd "${S}" + dodoc ChangeLog NEWS + if use doc; then + dohtml doc/html-Qt4/* || die + insinto /usr/share/doc/${PF}/Scintilla + doins doc/Scintilla/* || die + fi +} + +pkg_postinst() { + ewarn "Please remerge dev-python/PyQt4 if you have problems with eric or other" + ewarn "qscintilla related packages before submitting bug reports." +} |