diff options
author | Ben de Groot <yngwin@gentoo.org> | 2009-11-11 15:26:48 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2009-11-11 15:26:48 +0000 |
commit | 03ab8da16349d1681bfffd72c7c3cd08eeb27aa4 (patch) | |
tree | e6614e4c7954de03c0cf8e88fc0c5eea9f4107b3 /x11-libs/qt-core | |
parent | Remove obsolete versions (diff) | |
download | gentoo-2-03ab8da16349d1681bfffd72c7c3cd08eeb27aa4.tar.gz gentoo-2-03ab8da16349d1681bfffd72c7c3cd08eeb27aa4.tar.bz2 gentoo-2-03ab8da16349d1681bfffd72c7c3cd08eeb27aa4.zip |
Remove obsolete versions
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/qt-core')
-rw-r--r-- | x11-libs/qt-core/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-core/qt-core-4.4.2-r2.ebuild | 182 | ||||
-rw-r--r-- | x11-libs/qt-core/qt-core-4.4.2.ebuild | 173 | ||||
-rw-r--r-- | x11-libs/qt-core/qt-core-4.5.1.ebuild | 207 | ||||
-rw-r--r-- | x11-libs/qt-core/qt-core-4.5.2.ebuild | 208 | ||||
-rw-r--r-- | x11-libs/qt-core/qt-core-4.5.3-r1.ebuild | 216 |
6 files changed, 6 insertions, 987 deletions
diff --git a/x11-libs/qt-core/ChangeLog b/x11-libs/qt-core/ChangeLog index 1804dd41f6ed..27ec46cdf4bb 100644 --- a/x11-libs/qt-core/ChangeLog +++ b/x11-libs/qt-core/ChangeLog @@ -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.73 2009/11/10 22:36:15 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/ChangeLog,v 1.74 2009/11/11 15:26:48 yngwin Exp $ + + 11 Nov 2009; Ben de Groot <yngwin@gentoo.org> -qt-core-4.4.2.ebuild, + -qt-core-4.4.2-r2.ebuild, -qt-core-4.5.1.ebuild, -qt-core-4.5.2.ebuild, + -qt-core-4.5.3-r1.ebuild: + Remove obsolete versions 10 Nov 2009; Jeroen Roovers <jer@gentoo.org> qt-core-4.5.3-r2.ebuild: Stable for HPPA (bug #290922). diff --git a/x11-libs/qt-core/qt-core-4.4.2-r2.ebuild b/x11-libs/qt-core/qt-core-4.4.2-r2.ebuild deleted file mode 100644 index 4d6dbd12c161..000000000000 --- a/x11-libs/qt-core/qt-core-4.4.2-r2.ebuild +++ /dev/null @@ -1,182 +0,0 @@ -# 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.4.2-r2.ebuild,v 1.8 2009/04/28 15:32:47 jer Exp $ - -EAPI="1" -inherit qt4-build - -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework." -HOMEPAGE="http://www.trolltech.com/" - -LICENSE="|| ( GPL-3 GPL-2 )" -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_alpha:${SLOT}" -DEPEND="${RDEPEND} - dev-util/pkgconfig" -PDEPEND="qt3support? ( ~x11-libs/qt-gui-${PV} )" - -QT4_TARGET_DIRECTORIES=" -src/tools/moc/ -src/tools/rcc/ -src/tools/uic/ -src/corelib/ -src/xml/ -src/network/ -src/plugins/codecs/" -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() { - use doc && QT4_EXTRACT_DIRECTORIES="${QT4_EXTRACT_DIRECTORIES} - doc/ - tools/qdoc3/" - QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} - ${QT4_EXTRACT_DIRECTORIES}" - - qt4-build_src_unpack - - # Make patches apply... - cd "${S}" - - # Apply bugfix patches from qt-copy (KDE) - epatch "${FILESDIR}"/0167-fix-group-reading.diff - epatch "${FILESDIR}"/0253-qmake_correct_path_separators.diff - epatch "${FILESDIR}"/0257-qurl-validate-speedup.diff - - # 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_compile() { - unset QMAKESPEC - local myconf - - myconf="${myconf} - $(qt_use glib) - $(qt_use iconv) - $(qt_use ssl openssl) - $(qt_use qt3support)" - - myconf="${myconf} -no-xkb -no-tablet -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-nis -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" - - if ! use doc; then - myconf="${myconf} -nomake docs" - fi - - 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 - - keepdir "${QTSYSCONFDIR}" -} diff --git a/x11-libs/qt-core/qt-core-4.4.2.ebuild b/x11-libs/qt-core/qt-core-4.4.2.ebuild deleted file mode 100644 index 149cc6587d89..000000000000 --- a/x11-libs/qt-core/qt-core-4.4.2.ebuild +++ /dev/null @@ -1,173 +0,0 @@ -# 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.4.2.ebuild,v 1.12 2009/02/18 19:47:54 jer Exp $ - -EAPI="1" -inherit qt4-build - -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework." -HOMEPAGE="http://www.trolltech.com/" - -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_alpha:${SLOT}" -DEPEND="${RDEPEND} - dev-util/pkgconfig" -PDEPEND="qt3support? ( ~x11-libs/qt-gui-${PV} )" - -QT4_TARGET_DIRECTORIES=" -src/tools/moc/ -src/tools/rcc/ -src/tools/uic/ -src/corelib/ -src/xml/ -src/network/ -src/plugins/codecs/" -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() { - use doc && QT4_EXTRACT_DIRECTORIES="${QT4_EXTRACT_DIRECTORIES} - doc/ - tools/qdoc3/" - 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_compile() { - unset QMAKESPEC - local myconf - - myconf="${myconf} - $(qt_use glib) - $(qt_use ssl openssl) - $(qt_use qt3support)" - - myconf="${myconf} -no-xkb -no-tablet -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-nis -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" - - if ! use doc; then - myconf="${myconf} -nomake docs" - fi - - 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 - - keepdir "${QTSYSCONFDIR}" -} diff --git a/x11-libs/qt-core/qt-core-4.5.1.ebuild b/x11-libs/qt-core/qt-core-4.5.1.ebuild deleted file mode 100644 index 6b4ff35324bb..000000000000 --- a/x11-libs/qt-core/qt-core-4.5.1.ebuild +++ /dev/null @@ -1,207 +0,0 @@ -# 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.1.ebuild,v 1.12 2009/06/30 15:09:30 armin76 Exp $ - -EAPI="2" -inherit qt4-build - -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" -SLOT="4" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sparc x86 ~x86-fbsd" -IUSE="doc +glib +iconv +qt3support +ssl" - -RDEPEND="sys-libs/zlib - x11-libs/libX11 - x11-libs/libXext - 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" - #patch for ia64 requested from armin76 - epatch "${FILESDIR}/${PN}-4.5-boilerplate.diff" -} - -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}" -} diff --git a/x11-libs/qt-core/qt-core-4.5.2.ebuild b/x11-libs/qt-core/qt-core-4.5.2.ebuild deleted file mode 100644 index a185825c2d8c..000000000000 --- a/x11-libs/qt-core/qt-core-4.5.2.ebuild +++ /dev/null @@ -1,208 +0,0 @@ -# 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.2.ebuild,v 1.5 2009/10/11 16:59:42 armin76 Exp $ - -EAPI="2" -inherit qt4-build - -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" -SLOT="4" -KEYWORDS="alpha amd64 arm ~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 include 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/" - -PATCHES=( - "${FILESDIR}/qt-4.5-nolibx11.diff" -) - -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" - - setqtenv - 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}" -} diff --git a/x11-libs/qt-core/qt-core-4.5.3-r1.ebuild b/x11-libs/qt-core/qt-core-4.5.3-r1.ebuild deleted file mode 100644 index a80f13be617b..000000000000 --- a/x11-libs/qt-core/qt-core-4.5.3-r1.ebuild +++ /dev/null @@ -1,216 +0,0 @@ -# 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.3-r1.ebuild,v 1.2 2009/10/29 11:19:22 fauli Exp $ - -EAPI="2" -inherit qt4-build - -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" -SLOT="4" -KEYWORDS="~alpha ~amd64 ~arm ~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 -tools/linguist/lrelease -tools/linguist/lupdate -tools/linguist/lconvert" - -# Most ebuilds include 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 -tools/linguist/shared -translations" - -PATCHES=( - "${FILESDIR}/qt-4.5-nolibx11.diff" -) - -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,lconvert,lrelease,lupdate} || 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 - - # use freshly built libraries - LD_LIBRARY_PATH="${S}/lib" "${S}"/bin/lrelease translations/*.ts \ - || die "generating translations failed" - insinto ${QTTRANSDIR} - doins translations/*.qm || die "doins translations failed" - - setqtenv - 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}" -} |