public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.1.ebuild
@ 2010-01-15 16:23 Ben de Groot (yngwin)
  0 siblings, 0 replies; 2+ messages in thread
From: Ben de Groot (yngwin) @ 2010-01-15 16:23 UTC (permalink / raw
  To: gentoo-commits

yngwin      10/01/15 16:23:07

  Modified:             ChangeLog
  Added:                qscintilla-2.4.1.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.40                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	6 Jan 2010 21:10:25 -0000	1.39
+++ ChangeLog	15 Jan 2010 16:23:07 -0000	1.40
@@ -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.39 2010/01/06 21:10:25 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.40 2010/01/15 16:23:07 yngwin Exp $
+
+*qscintilla-2.4.1 (15 Jan 2010)
+
+  15 Jan 2010; Ben de Groot <yngwin@gentoo.org> +qscintilla-2.4.1.ebuild:
+  Version bump
 
   06 Jan 2010; Brent Baude <ranger@gentoo.org> qscintilla-2.4.ebuild:
   Marking qscintilla-2.4 ppc64 for bug 284707



1.1                  x11-libs/qscintilla/qscintilla-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.1.ebuild?rev=1.1&content-type=text/plain

Index: qscintilla-2.4.1.ebuild
===================================================================
# 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.1.ebuild,v 1.1 2010/01/15 16:23:07 yngwin 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
	eqmake4 qscintilla.pro

	cd "${S}"/designer-Qt4
	eqmake4 designer.pro
}

src_compile() {
	cd "${S}"/Qt4
	emake all staticlib || die "emake failed"

	cd "${S}"/designer-Qt4
	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."
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.1.ebuild
@ 2010-01-17 23:11 Ben de Groot (yngwin)
  0 siblings, 0 replies; 2+ messages in thread
From: Ben de Groot (yngwin) @ 2010-01-17 23:11 UTC (permalink / raw
  To: gentoo-commits

yngwin      10/01/17 23:11:46

  Modified:             ChangeLog qscintilla-2.4.1.ebuild
  Log:
  Add some einfo messages to prevent confusing output.
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.41                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	15 Jan 2010 16:23:07 -0000	1.40
+++ ChangeLog	17 Jan 2010 23:11:45 -0000	1.41
@@ -1,6 +1,9 @@
 # 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.40 2010/01/15 16:23:07 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.41 2010/01/17 23:11:45 yngwin Exp $
+
+  17 Jan 2010; Ben de Groot <yngwin@gentoo.org> qscintilla-2.4.1.ebuild:
+  Add some einfo messages to prevent confusing output.
 
 *qscintilla-2.4.1 (15 Jan 2010)
 



1.2                  x11-libs/qscintilla/qscintilla-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.1.ebuild?r1=1.1&r2=1.2

Index: qscintilla-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qscintilla-2.4.1.ebuild	15 Jan 2010 16:23:07 -0000	1.1
+++ qscintilla-2.4.1.ebuild	17 Jan 2010 23:11:45 -0000	1.2
@@ -1,6 +1,6 @@
 # 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.1.ebuild,v 1.1 2010/01/15 16:23:07 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.1.ebuild,v 1.2 2010/01/17 23:11:45 yngwin Exp $
 
 EAPI="2"
 
@@ -27,17 +27,21 @@
 
 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"
 }
 






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-17 23:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-17 23:11 [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.1.ebuild Ben de Groot (yngwin)
  -- strict thread matches above, loose matches on Subject: below --
2010-01-15 16:23 Ben de Groot (yngwin)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox