* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0.ebuild
@ 2009-03-04 21:08 Ben de Groot (yngwin)
0 siblings, 0 replies; 3+ messages in thread
From: Ben de Groot (yngwin) @ 2009-03-04 21:08 UTC (permalink / raw
To: gentoo-commits
yngwin 09/03/04 21:08:35
Modified: ChangeLog
Added: qt-core-4.5.0.ebuild
Log:
Qt 4.5.0 release version bump
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.35 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 25 Feb 2009 09:17:26 -0000 1.34
+++ ChangeLog 4 Mar 2009 21:08:32 -0000 1.35
@@ -1,6 +1,11 @@
# ChangeLog for x11-libs/qt-core
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.34 2009/02/25 09:17:26 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.35 2009/03/04 21:08:32 yngwin Exp $
+
+*qt-core-4.5.0 (04 Mar 2009)
+
+ 04 Mar 2009; Ben de Groot <yngwin@gentoo.org> +qt-core-4.5.0.ebuild:
+ Version bump
25 Feb 2009; Markos Chandras <hwoarang@gentoo.org>
-qt-core-4.4.2-r1.ebuild, qt-core-4.4.2-r2.ebuild,
1.1 x11-libs/qt-core/qt-core-4.5.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild?rev=1.1&content-type=text/plain
Index: qt-core-4.5.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild,v 1.1 2009/03/04 21:08:32 yngwin Exp $
EAPI="2"
inherit qt4-build
DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework"
SLOT="4"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc +glib +iconv +qt3support +ssl"
RDEPEND="sys-libs/zlib
glib? ( dev-libs/glib )
ssl? ( dev-libs/openssl )
!<x11-libs/qt-4.4.0:4"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PDEPEND="qt3support? ( ~x11-libs/qt-gui-${PV}[qt3support] )"
QT4_TARGET_DIRECTORIES="
src/tools/bootstrap
src/tools/moc/
src/tools/rcc/
src/tools/uic/
src/corelib/
src/xml/
src/network/
src/plugins/codecs/"
# Most ebuilds inlude almost everything for testing
# Will clear out unneeded directories after everything else works OK
QT4_EXTRACT_DIRECTORIES="
include/Qt/
include/QtCore/
include/QtNetwork/
include/QtScript/
include/QtXml/
src/plugins/plugins.pro
src/plugins/qpluginbase.pri
src/src.pro
src/3rdparty/des/
src/3rdparty/harfbuzz/
src/3rdparty/md4/
src/3rdparty/md5/
src/3rdparty/sha1/
src/script/
translations/"
pkg_setup() {
qt4-build_pkg_setup
if has_version x11-libs/qt-core; then
# Check to see if they've changed the glib flag since the last time installing this package.
if use glib && ! built_with_use x11-libs/qt-core glib && has_version x11-libs/qt-gui; then
ewarn "You have changed the \"glib\" use flag since the last time you have emerged this package."
ewarn "You should also re-emerge x11-libs/qt-gui in order for it to pick up this change."
elif ! use glib && built_with_use x11-libs/qt-core glib && has_version x11-libs/qt-gui; then
ewarn "You have changed the \"glib\" use flag since the last time you have emerged this package."
ewarn "You should also re-emerge x11-libs/qt-gui in order for it to pick up this change."
fi
# Check to see if they've changed the qt3support flag since the last time installing this package.
# If so, give a list of packages they need to uninstall first.
if use qt3support && ! built_with_use x11-libs/qt-core qt3support; then
local need_to_remove
ewarn "You have changed the \"qt3support\" use flag since the last time you have emerged this package."
for x in sql opengl gui qt3support; do
local pkg="x11-libs/qt-${x}"
if has_version $pkg; then
need_to_remove="${need_to_remove} ${pkg}"
fi
done
if [[ -n ${need_to_remove} ]]; then
die "You must first uninstall these packages before continuing: \n\t\t${need_to_remove}"
fi
elif ! use qt3support && built_with_use x11-libs/qt-core qt3support ; then
local need_to_remove
ewarn "You have changed the \"qt3support\" use flag since the last time you have emerged this package."
for x in sql opengl gui qt3support; do
local pkg="x11-libs/qt-${x}"
if has_version $pkg; then
need_to_remove="${need_to_remove} ${pkg}"
fi
done
if [[ -n ${need_to_remove} ]]; then
die "You must first uninstall these packages before continuing: \n\t\t${need_to_remove}"
fi
fi
fi
}
src_unpack() {
if use doc; then
QT4_EXTRACT_DIRECTORIES="${QT4_EXTRACT_DIRECTORIES}
doc/"
QT4_TARGET_DIRECTORIES="${QT4_TARGET_DIRECTORIES}
tools/qdoc3"
fi
QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES}
${QT4_EXTRACT_DIRECTORIES}"
qt4-build_src_unpack
# Don't pre-strip, bug 235026
for i in kr jp cn tw ; do
echo "CONFIG+=nostrip" >> "${S}"/src/plugins/codecs/${i}/${i}.pro
done
}
src_prepare(){
qt4-build_src_prepare
# bug #172219
sed -i -e "s:CXXFLAGS.*=:CXXFLAGS=${CXXFLAGS} :" \
"${S}/qmake/Makefile.unix" || die "sed qmake/Makefile.unix CXXFLAGS failed"
sed -i -e "s:LFLAGS.*=:LFLAGS=${LDFLAGS} :" \
"${S}/qmake/Makefile.unix" || die "sed qmake/Makefile.unix LDFLAGS failed"
}
src_configure() {
unset QMAKESPEC
myconf="${myconf}
$(qt_use glib)
$(qt_use iconv)
$(qt_use ssl openssl)
$(qt_use qt3support)"
myconf="${myconf} -no-xkb -no-fontconfig -no-xrender -no-xrandr
-no-xfixes -no-xcursor -no-xinerama -no-xshape -no-sm -no-opengl
-no-nas-sound -no-dbus -no-cups -no-gif -no-libpng
-no-libmng -no-libjpeg -system-zlib -no-webkit -no-phonon -no-xmlpatterns
-no-freetype -no-libtiff -no-accessibility -no-fontconfig -no-opengl
-no-svg -no-gtkstyle"
if ! use doc; then
myconf="${myconf} -nomake docs"
fi
cp -f "${FILESDIR}"/moc.pro "${S}"/src/tools/moc/
cp -f "${FILESDIR}"/rcc.pro "${S}"/src/tools/rcc/
cp -f "${FILESDIR}"/uic.pro "${S}"/src/tools/uic/
qt4-build_src_configure
}
src_compile() {
# bug #259736
unset QMAKESPEC
qt4-build_src_compile
}
src_install() {
dobin "${S}"/bin/{qmake,moc,rcc,uic} || die "dobin failed."
install_directories src/{corelib,xml,network,plugins/codecs}
emake INSTALL_ROOT="${D}" install_mkspecs || die "emake install_mkspecs failed"
if use doc; then
emake INSTALL_ROOT="${D}" install_htmldocs || die "emake install_htmldocs failed."
fi
emake INSTALL_ROOT="${D}" install_translations || die "emake install_translations failed"
fix_library_files
# List all the multilib libdirs
local libdirs
for libdir in $(get_all_libdirs); do
libdirs="${libdirs}:/usr/${libdir}/qt4"
done
cat <<-EOF > "${T}/44qt4"
LDPATH=${libdirs:1}
EOF
doenvd "${T}/44qt4"
dodir /${QTDATADIR}/mkspecs/gentoo
mv "${D}"/${QTDATADIR}/mkspecs/qconfig.pri "${D}${QTDATADIR}"/mkspecs/gentoo || \
die "Failed to move qconfig.pri"
sed -i -e '2a#include <Gentoo/gentoo-qconfig.h>\n' \
"${D}${QTHEADERDIR}"/QtCore/qconfig.h \
"${D}${QTHEADERDIR}"/Qt/qconfig.h || die "sed for qconfig.h failed."
if use glib; then
QCONFIG_DEFINE="$(use glib && echo QT_GLIB)
$(use ssl && echo QT_OPENSSL)"
install_qconfigs
fi
# remove some unnecessary headers
rm -f "${D}${QTHEADERDIR}"/{Qt,QtCore}/{\
qatomic_macosx.h,\
qatomic_windows.h,\
qatomic_windowsce.h,\
qt_windows.h}
keepdir "${QTSYSCONFDIR}"
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0.ebuild
@ 2009-03-17 17:45 Raul Porcel (armin76)
0 siblings, 0 replies; 3+ messages in thread
From: Raul Porcel (armin76) @ 2009-03-17 17:45 UTC (permalink / raw
To: gentoo-commits
armin76 09/03/17 17:45:52
Modified: ChangeLog qt-core-4.5.0.ebuild
Log:
Add ~arm wrt #262462
(Portage version: 2.1.6.7/cvs/Linux ia64)
Revision Changes Path
1.36 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog 4 Mar 2009 21:08:32 -0000 1.35
+++ ChangeLog 17 Mar 2009 17:45:52 -0000 1.36
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/qt-core
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.35 2009/03/04 21:08:32 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.36 2009/03/17 17:45:52 armin76 Exp $
+
+ 17 Mar 2009; Raúl Porcel <armin76@gentoo.org> qt-core-4.5.0.ebuild:
+ Add ~arm wrt #262462
*qt-core-4.5.0 (04 Mar 2009)
1.2 x11-libs/qt-core/qt-core-4.5.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild?r1=1.1&r2=1.2
Index: qt-core-4.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qt-core-4.5.0.ebuild 4 Mar 2009 21:08:32 -0000 1.1
+++ qt-core-4.5.0.ebuild 17 Mar 2009 17:45:52 -0000 1.2
@@ -1,13 +1,13 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild,v 1.1 2009/03/04 21:08:32 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0.ebuild,v 1.2 2009/03/17 17:45:52 armin76 Exp $
EAPI="2"
inherit qt4-build
DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework"
SLOT="4"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc +glib +iconv +qt3support +ssl"
RDEPEND="sys-libs/zlib
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0.ebuild
@ 2009-05-14 22:18 Ben de Groot (yngwin)
0 siblings, 0 replies; 3+ messages in thread
From: Ben de Groot (yngwin) @ 2009-05-14 22:18 UTC (permalink / raw
To: gentoo-commits
yngwin 09/05/14 22:18:29
Modified: ChangeLog
Removed: qt-core-4.5.0.ebuild
Log:
Remove old
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Revision Changes Path
1.48 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 13 May 2009 17:58:02 -0000 1.47
+++ ChangeLog 14 May 2009 22:18:29 -0000 1.48
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/qt-core
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.47 2009/05/13 17:58:02 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.48 2009/05/14 22:18:29 yngwin Exp $
+
+ 14 May 2009; Ben de Groot <yngwin@gentoo.org> -qt-core-4.5.0.ebuild:
+ Remove old
13 May 2009; Brent Baude <ranger@gentoo.org> qt-core-4.5.1.ebuild:
Marking qt-core-4.5.1 ppc stable for bug 266201
@@ -183,7 +186,7 @@
Added Qt-4.4.0_beta, note that the RC1 is an accidentally mislabelled
`technical preview`, so this will appear as a downgrade if you installed
that version.
- Thanks to David Leverton, Bo Andresen, Bernd Steinhauser &
+ Thanks to David Leverton, Bo Andresen, Bernd Steinhauser &
Arfrever Frehtes Taifersar Arahesis
Fixes bugs: 206975, 212086, 172219, 212069, 206976, 212108
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-05-14 22:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-17 17:45 [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0.ebuild Raul Porcel (armin76)
-- strict thread matches above, loose matches on Subject: below --
2009-05-14 22:18 Ben de Groot (yngwin)
2009-03-04 21:08 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