* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-02-11 23:15 Ben de Groot (yngwin)
0 siblings, 0 replies; 8+ messages in thread
From: Ben de Groot (yngwin) @ 2009-02-11 23:15 UTC (permalink / raw
To: gentoo-commits
yngwin 09/02/11 23:15:42
Modified: ChangeLog
Added: qt-core-4.5.0_rc1.ebuild
Log:
Qt 4.5.0_rc1 version bump
(Portage version: 2.2_rc23/cvs/Linux i686)
Revision Changes Path
1.25 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 6 Feb 2009 16:25:38 -0000 1.24
+++ ChangeLog 11 Feb 2009 23:15:42 -0000 1.25
@@ -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.24 2009/02/06 16:25:38 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.25 2009/02/11 23:15:42 yngwin Exp $
+
+ 11 Feb 2009; Ben de Groot <yngwin@gentoo.org> ChangeLog:
+ Version bump
06 Feb 2009; Raúl Porcel <armin76@gentoo.org> qt-core-4.4.2.ebuild:
ia64/sparc stable wrt #248038
1.1 x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.1&content-type=text/plain
Index: qt-core-4.5.0_rc1.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_rc1.ebuild,v 1.1 2009/02/11 23:15:42 yngwin Exp $
EAPI="2"
inherit qt4-build
DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework"
LICENSE="|| ( GPL-3 GPL-2 )"
SLOT="4"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc +glib +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/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_configure() {
unset QMAKESPEC
myconf="${myconf}
$(qt_use glib)
$(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 -iconv -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_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] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-02-12 1:45 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-02-12 1:45 UTC (permalink / raw
To: gentoo-commits
hwoarang 09/02/12 01:45:05
Modified: ChangeLog qt-core-4.5.0_rc1.ebuild
Log:
Add missing files,add extra target,closing (see bug #258667)
(Portage version: 2.1.6.7/cvs/Linux i686)
Revision Changes Path
1.26 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 11 Feb 2009 23:15:42 -0000 1.25
+++ ChangeLog 12 Feb 2009 01:45:05 -0000 1.26
@@ -1,6 +1,10 @@
# 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.25 2009/02/11 23:15:42 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.26 2009/02/12 01:45:05 hwoarang Exp $
+
+ 12 Feb 2009; Markos Chandras <hwoarang@gentoo.org> +files/moc.pro,
+ +files/rcc.pro, +files/uic.pro, qt-core-4.5.0_rc1.ebuild:
+ Add missing files, add bootstrap build target ( see bug #258667 )
11 Feb 2009; Ben de Groot <yngwin@gentoo.org> ChangeLog:
Version bump
1.2 x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.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_rc1.ebuild?r1=1.1&r2=1.2
Index: qt-core-4.5.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qt-core-4.5.0_rc1.ebuild 11 Feb 2009 23:15:42 -0000 1.1
+++ qt-core-4.5.0_rc1.ebuild 12 Feb 2009 01:45:05 -0000 1.2
@@ -1,6 +1,6 @@
# 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_rc1.ebuild,v 1.1 2009/02/11 23:15:42 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v 1.2 2009/02/12 01:45:05 hwoarang Exp $
EAPI="2"
inherit qt4-build
@@ -20,6 +20,7 @@
PDEPEND="qt3support? ( ~x11-libs/qt-gui-${PV}[qt3support] )"
QT4_TARGET_DIRECTORIES="
+src/tools/bootstrap
src/tools/moc/
src/tools/rcc/
src/tools/uic/
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-02-13 12:48 Carsten Lohrke (carlo)
0 siblings, 0 replies; 8+ messages in thread
From: Carsten Lohrke (carlo) @ 2009-02-13 12:48 UTC (permalink / raw
To: gentoo-commits
carlo 09/02/13 12:48:36
Modified: ChangeLog qt-core-4.5.0_rc1.ebuild
Log:
Correct Qt 4.4 blocker.
(Portage version: 2.2_rc23/cvs/Linux i686)
Revision Changes Path
1.27 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 12 Feb 2009 01:45:05 -0000 1.26
+++ ChangeLog 13 Feb 2009 12:48:36 -0000 1.27
@@ -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.26 2009/02/12 01:45:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.27 2009/02/13 12:48:36 carlo Exp $
+
+ 13 Feb 2009; Carsten Lohrke <carlo@gentoo.org> qt-core-4.5.0_rc1.ebuild:
+ Correct Qt 4.4 blocker.
12 Feb 2009; Markos Chandras <hwoarang@gentoo.org> +files/moc.pro,
+files/rcc.pro, +files/uic.pro, qt-core-4.5.0_rc1.ebuild:
1.3 x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?r1=1.2&r2=1.3
Index: qt-core-4.5.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qt-core-4.5.0_rc1.ebuild 12 Feb 2009 01:45:05 -0000 1.2
+++ qt-core-4.5.0_rc1.ebuild 13 Feb 2009 12:48:36 -0000 1.3
@@ -1,6 +1,6 @@
# 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_rc1.ebuild,v 1.2 2009/02/12 01:45:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v 1.3 2009/02/13 12:48:36 carlo Exp $
EAPI="2"
inherit qt4-build
@@ -14,7 +14,7 @@
RDEPEND="sys-libs/zlib
glib? ( dev-libs/glib )
ssl? ( dev-libs/openssl )
- !<x11-libs/qt-4.4.0:4"
+ !<x11-libs/qt-4.4.99:4"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PDEPEND="qt3support? ( ~x11-libs/qt-gui-${PV}[qt3support] )"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-02-14 0:04 Ben de Groot (yngwin)
0 siblings, 0 replies; 8+ messages in thread
From: Ben de Groot (yngwin) @ 2009-02-14 0:04 UTC (permalink / raw
To: gentoo-commits
yngwin 09/02/14 00:04:03
Modified: ChangeLog qt-core-4.5.0_rc1.ebuild
Log:
Correct <qt-4.4.0 blocker back again
(Portage version: 2.2_rc23/cvs/Linux i686)
Revision Changes Path
1.28 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 13 Feb 2009 12:48:36 -0000 1.27
+++ ChangeLog 14 Feb 2009 00:04:03 -0000 1.28
@@ -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.27 2009/02/13 12:48:36 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.28 2009/02/14 00:04:03 yngwin Exp $
+
+ 14 Feb 2009; Ben de Groot <yngwin@gentoo.org> qt-core-4.5.0_rc1:
+ Correct <qt-4.4.0 blocker
13 Feb 2009; Carsten Lohrke <carlo@gentoo.org> qt-core-4.5.0_rc1.ebuild:
Correct Qt 4.4 blocker.
1.4 x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?r1=1.3&r2=1.4
Index: qt-core-4.5.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qt-core-4.5.0_rc1.ebuild 13 Feb 2009 12:48:36 -0000 1.3
+++ qt-core-4.5.0_rc1.ebuild 14 Feb 2009 00:04:03 -0000 1.4
@@ -1,6 +1,6 @@
# 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_rc1.ebuild,v 1.3 2009/02/13 12:48:36 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v 1.4 2009/02/14 00:04:03 yngwin Exp $
EAPI="2"
inherit qt4-build
@@ -14,7 +14,7 @@
RDEPEND="sys-libs/zlib
glib? ( dev-libs/glib )
ssl? ( dev-libs/openssl )
- !<x11-libs/qt-4.4.99:4"
+ !<x11-libs/qt-4.4.0:4"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PDEPEND="qt3support? ( ~x11-libs/qt-gui-${PV}[qt3support] )"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-02-14 23:00 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-02-14 23:00 UTC (permalink / raw
To: gentoo-commits
hwoarang 09/02/14 23:00:38
Modified: ChangeLog qt-core-4.5.0_rc1.ebuild
Log:
Fixing bug #172219, Thanks to Arfrever Frehtes Taifersar Arahesis
(Portage version: 2.1.6.7/cvs/Linux i686)
Revision Changes Path
1.30 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.29&r2=1.30
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog 14 Feb 2009 15:09:31 -0000 1.29
+++ ChangeLog 14 Feb 2009 23:00:37 -0000 1.30
@@ -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.29 2009/02/14 15:09:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.30 2009/02/14 23:00:37 hwoarang Exp $
+
+ 14 Feb 2009; Markos Chandras <hwoarang@gentoo.org>
+ qt-core-4.5.0_rc1.ebuild:
+ Fixing bug #172219. Thanks to Arfrever Frehtes Taifersar Arahesis
+ <Arfrever.FTA@GMail.Com>
*qt-core-4.4.2-r2 (14 Feb 2009)
1.5 x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?r1=1.4&r2=1.5
Index: qt-core-4.5.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qt-core-4.5.0_rc1.ebuild 14 Feb 2009 00:04:03 -0000 1.4
+++ qt-core-4.5.0_rc1.ebuild 14 Feb 2009 23:00:38 -0000 1.5
@@ -1,6 +1,6 @@
# 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_rc1.ebuild,v 1.4 2009/02/14 00:04:03 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v 1.5 2009/02/14 23:00:38 hwoarang Exp $
EAPI="2"
inherit qt4-build
@@ -111,6 +111,17 @@
done
}
+src_prepare(){
+ # bug #172219
+ if use custom-cxxflags;then
+ sed -i -e "s:CXXFLAGS.*=:CXXFLAGS=${CXXFLAGS} :" \
+ "${S}/qmake/Makefile.unix" || die "sed qmake/Makefile.unix CXXFLAGS failed"
+ fi
+ sed -i -e "s:LFLAGS.*=:LFLAGS=${LDFLAGS} :" \
+ "${S}/qmake/Makefile.unix" || die "sed qmake/Makefile.unix LDFLAGS failed"
+ qt4-build_src_prepare
+}
+
src_configure() {
unset QMAKESPEC
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-02-14 23:53 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-02-14 23:53 UTC (permalink / raw
To: gentoo-commits
hwoarang 09/02/14 23:53:26
Modified: ChangeLog qt-core-4.5.0_rc1.ebuild
Log:
fixing src_prepare. Thanks to Arfrever
(Portage version: 2.1.6.7/cvs/Linux i686)
Revision Changes Path
1.31 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 14 Feb 2009 23:00:37 -0000 1.30
+++ ChangeLog 14 Feb 2009 23:53:26 -0000 1.31
@@ -1,6 +1,10 @@
# 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.30 2009/02/14 23:00:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.31 2009/02/14 23:53:26 hwoarang Exp $
+
+ 14 Feb 2009; Markos Chandras <hwoarang@gentoo.org>
+ qt-core-4.5.0_rc1.ebuild:
+ fixing src_prepare. Thanks to Arfrever
14 Feb 2009; Markos Chandras <hwoarang@gentoo.org>
qt-core-4.5.0_rc1.ebuild:
1.6 x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?r1=1.5&r2=1.6
Index: qt-core-4.5.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- qt-core-4.5.0_rc1.ebuild 14 Feb 2009 23:00:38 -0000 1.5
+++ qt-core-4.5.0_rc1.ebuild 14 Feb 2009 23:53:26 -0000 1.6
@@ -1,6 +1,6 @@
# 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_rc1.ebuild,v 1.5 2009/02/14 23:00:38 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v 1.6 2009/02/14 23:53:26 hwoarang Exp $
EAPI="2"
inherit qt4-build
@@ -112,14 +112,12 @@
}
src_prepare(){
+ qt4-build_src_prepare
# bug #172219
- if use custom-cxxflags;then
- sed -i -e "s:CXXFLAGS.*=:CXXFLAGS=${CXXFLAGS} :" \
- "${S}/qmake/Makefile.unix" || die "sed qmake/Makefile.unix CXXFLAGS failed"
- fi
+ 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"
- qt4-build_src_prepare
}
src_configure() {
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-02-21 19:23 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-02-21 19:23 UTC (permalink / raw
To: gentoo-commits
hwoarang 09/02/21 19:23:11
Modified: ChangeLog qt-core-4.5.0_rc1.ebuild
Log:
Fixing bug #259736
(Portage version: 2.2_rc23/cvs/Linux i686)
Revision Changes Path
1.33 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.32&r2=1.33
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog 18 Feb 2009 19:47:54 -0000 1.32
+++ ChangeLog 21 Feb 2009 19:23:11 -0000 1.33
@@ -1,6 +1,10 @@
# 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.32 2009/02/18 19:47:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.33 2009/02/21 19:23:11 hwoarang Exp $
+
+ 21 Feb 2009; Markos Chandras <hwoarang@gentoo.org>
+ qt-core-4.5.0_rc1.ebuild:
+ Fixing bug #259736
18 Feb 2009; Jeroen Roovers <jer@gentoo.org> qt-core-4.4.2.ebuild:
Stable for HPPA (bug #248083).
1.7 x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild?r1=1.6&r2=1.7
Index: qt-core-4.5.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qt-core-4.5.0_rc1.ebuild 14 Feb 2009 23:53:26 -0000 1.6
+++ qt-core-4.5.0_rc1.ebuild 21 Feb 2009 19:23:11 -0000 1.7
@@ -1,6 +1,6 @@
# 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_rc1.ebuild,v 1.6 2009/02/14 23:53:26 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.5.0_rc1.ebuild,v 1.7 2009/02/21 19:23:11 hwoarang Exp $
EAPI="2"
inherit qt4-build
@@ -146,6 +146,12 @@
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."
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild
@ 2009-03-18 22:19 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-03-18 22:19 UTC (permalink / raw
To: gentoo-commits
hwoarang 09/03/18 22:19:49
Modified: ChangeLog
Removed: qt-core-4.5.0_rc1.ebuild
Log:
Dropping 4.5.0_rc1
(Portage version: 2.2_rc25/cvs/Linux x86_64)
Revision Changes Path
1.37 x11-libs/qt-core/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 17 Mar 2009 17:45:52 -0000 1.36
+++ ChangeLog 18 Mar 2009 22:19:49 -0000 1.37
@@ -1,6 +1,10 @@
# 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.36 2009/03/17 17:45:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.37 2009/03/18 22:19:49 hwoarang Exp $
+
+ 18 Mar 2009; Markos Chandras <hwoarang@gentoo.org>
+ -qt-core-4.5.0_rc1.ebuild:
+ Dropping 4.5.0_rc1
17 Mar 2009; Raúl Porcel <armin76@gentoo.org> qt-core-4.5.0.ebuild:
Add ~arm wrt #262462
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-03-18 22:20 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-14 23:53 [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: ChangeLog qt-core-4.5.0_rc1.ebuild Markos Chandras (hwoarang)
-- strict thread matches above, loose matches on Subject: below --
2009-03-18 22:19 Markos Chandras (hwoarang)
2009-02-21 19:23 Markos Chandras (hwoarang)
2009-02-14 23:00 Markos Chandras (hwoarang)
2009-02-14 0:04 Ben de Groot (yngwin)
2009-02-13 12:48 Carsten Lohrke (carlo)
2009-02-12 1:45 Markos Chandras (hwoarang)
2009-02-11 23:15 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