pesa 15/04/30 13:36:24 Modified: ChangeLog Added: qscintilla-2.9.ebuild Log: Version bump. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)
Revision Changes Path 1.110 x11-libs/qscintilla/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.110&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.110&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.109&r2=1.110 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v retrieving revision 1.109 retrieving revision 1.110 diff -u -r1.109 -r1.110 --- ChangeLog 14 Apr 2015 12:36:55 -0000 1.109 +++ ChangeLog 30 Apr 2015 13:36:24 -0000 1.110 @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qscintilla # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.109 2015/04/14 12:36:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.110 2015/04/30 13:36:24 pesa Exp $ + +*qscintilla-2.9 (30 Apr 2015) + + 30 Apr 2015; Davide Pesavento <[email protected]> +qscintilla-2.9.ebuild: + Version bump. 14 Apr 2015; Agostino Sarubbo <[email protected]> qscintilla-2.8.4-r1.ebuild: Stable for ia64, wrt bug #524466 1.1 x11-libs/qscintilla/qscintilla-2.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.9.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.9.ebuild?rev=1.1&content-type=text/plain Index: qscintilla-2.9.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.9.ebuild,v 1.1 2015/04/30 13:36:24 pesa Exp $ EAPI=5 inherit flag-o-matic qmake-utils MY_P=QScintilla-gpl-${PV} DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class" HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro" SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz" LICENSE="|| ( GPL-2 GPL-3 )" SLOT="0/12" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="designer doc" DEPEND=" >=dev-qt/qtcore-4.8.5:4 >=dev-qt/qtgui-4.8.5:4 designer? ( >=dev-qt/designer-4.8.5:4 ) " RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} src_unpack() { default # Sub-slot sanity check local subslot=${SLOT#*/} local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' "${S}"/Qt4Qt5/qscintilla.pro) local major=${version%%.*} if [[ ${subslot} != ${major} ]]; then eerror eerror "Ebuild sub-slot (${subslot}) does not match QScintilla major version (${major})" eerror "Please update SLOT variable as follows:" eerror " SLOT=\"${SLOT%%/*}/${major}\"" eerror die "sub-slot sanity check failed" fi } src_configure() { pushd Qt4Qt5 > /dev/null eqmake4 popd > /dev/null if use designer; then # prevent building against system version (bug 466120) append-cxxflags -I../Qt4Qt5 append-ldflags -L../Qt4Qt5 pushd designer-Qt4Qt5 > /dev/null eqmake4 popd > /dev/null fi } src_compile() { pushd Qt4Qt5 > /dev/null emake popd > /dev/null if use designer; then pushd designer-Qt4Qt5 > /dev/null emake popd > /dev/null fi } src_install() { pushd Qt4Qt5 > /dev/null emake INSTALL_ROOT="${D}" install popd > /dev/null if use designer; then pushd designer-Qt4Qt5 > /dev/null emake INSTALL_ROOT="${D}" install popd > /dev/null fi dodoc NEWS if use doc; then docinto html dodoc -r doc/html-Qt4Qt5/* fi }
