diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2009-04-27 20:01:06 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2009-04-27 20:01:06 +0000 |
commit | 6e17815522782c38857c0480cb03fb98fc9486b8 (patch) | |
tree | 49a174b684b2a512b01265dd17c36d473c13e325 | |
parent | Removing masked file (diff) | |
download | historical-6e17815522782c38857c0480cb03fb98fc9486b8.tar.gz historical-6e17815522782c38857c0480cb03fb98fc9486b8.tar.bz2 historical-6e17815522782c38857c0480cb03fb98fc9486b8.zip |
Removed masked file
Package-Manager: portage-2.2_rc31/cvs/Linux x86_64
-rw-r--r-- | x11-libs/qt-embedded/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/qt-embedded/qt-embedded-3.3.8.ebuild | 145 |
2 files changed, 5 insertions, 146 deletions
diff --git a/x11-libs/qt-embedded/ChangeLog b/x11-libs/qt-embedded/ChangeLog index 8c436aaa8b8b..6ea4270b70ca 100644 --- a/x11-libs/qt-embedded/ChangeLog +++ b/x11-libs/qt-embedded/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/qt-embedded # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/ChangeLog,v 1.27 2009/03/27 23:54:53 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/ChangeLog,v 1.28 2009/04/27 20:01:06 hwoarang Exp $ + + 27 Apr 2009; Markos Chandras <hwoarang@gentoo.org> + -qt-embedded-3.3.8.ebuild: + Removed masked file 27 Mar 2009; Ben de Groot <yngwin@gentoo.org> +files/qt-embedded-3.3.8-castfix.patch, qt-embedded-3.3.8b: diff --git a/x11-libs/qt-embedded/qt-embedded-3.3.8.ebuild b/x11-libs/qt-embedded/qt-embedded-3.3.8.ebuild deleted file mode 100644 index 4c6434b66f4f..000000000000 --- a/x11-libs/qt-embedded/qt-embedded-3.3.8.ebuild +++ /dev/null @@ -1,145 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/qt-embedded-3.3.8.ebuild,v 1.4 2008/12/08 01:06:02 darkside Exp $ - -DESCRIPTION="Embedded Linux port of Qt" -HOMEPAGE="http://www.trolltech.com/products/embedded/" -SRC_URI="ftp://ftp.trolltech.com/qt/source/qt-embedded-free-${PV}.tar.bz2" -LICENSE="|| ( QPL-1.0 GPL-2 )" - -SLOT="3" -KEYWORDS="~x86 ~ppc" -IUSE="cups debug doc firebird gif ipv6 mysql nis odbc opengl postgres sqlite" - -DEPEND="media-libs/libpng - media-libs/jpeg - media-libs/libmng - media-libs/lcms - sys-libs/zlib - cups? ( net-print/cups ) - firebird? ( dev-db/firebird ) - mysql? ( virtual/mysql ) - opengl? ( virtual/opengl virtual/glu ) - postgres? ( virtual/postgresql-server )" -PDEPEND="odbc? ( ~dev-db/qt-unixODBC-3.3.8 )" - -S=${WORKDIR}/qt-embedded-free-${PV} - -QTBASE=/usr/qt/3-embedded - -pkg_setup() { - ewarn "Note: this ebuild provides a Qt/Embedded setup that is suitable for testing," - ewarn "but definitely not tailored for real embedded systems." - ewarn "I advise you select your own featureset (e.g. by editing this ebuild)" - ewarn "if building for such a system." - - export QTDIR=${S} - - # values for 'PLATFORM' (host system) can be found in mkspecs/ - # values for 'XPLATFORM' (target system) can be found in mkspecs/qws/ - if use x86; then - export PLATFORM="linux-g++" - export XPLATFORM="qws/linux-x86-g++" - elif use amd64; then - export PLATFORM="linux-g++-64" - export XPLATFORM="qws/linux-x86-g++" - elif use ppc; then - export PLATFORM="linux-g++" - export XPLATFORM="qws/linux-generic-g++" - else - die "Unknown platform" - fi -} - -src_unpack() { - unpack ${A} - cd ${S} - - sed -i -e 's:read acceptance:acceptance=yes:' configure - - # avoid using -rpath - find mkspecs/ -name qmake.conf -exec sed -i -e "s:QMAKE_RPATH.*:QMAKE_RPATH =:" {} \; -} - -src_compile() { - addwrite "${QTBASE}/etc/settings" - - use gif && myconf="${myconf} -qt-gif" || myconf="${myconf} -no-gif" - use cups && myconf="${myconf} -cups" || myconf="${myconf} -no-cups" - use nis && myconf="${myconf} -nis" || myconf="${myconf} -no-nis" - use ipv6 && myconf="${myconf} -ipv6" || myconf="${myconf} -no-ipv6" - use opengl || myconf="${myconf} -disable-opengl" - use mysql && myconf="${myconf} -plugin-sql-mysql -I/usr/include/mysql -L/usr/lib/mysql" || myconf="${myconf} -no-sql-mysql" - use postgres && myconf="${myconf} -plugin-sql-psql -I/usr/include/postgresql/server -I/usr/include/postgresql/pgsql -I/usr/include/postgresql/pgsql/server" || myconf="${myconf} -no-sql-psql" - use firebird && myconf="${myconf} -plugin-sql-ibase" || myconf="${myconf} -no-sql-ibase" - use sqlite && myconf="${myconf} -plugin-sql-sqlite" || myconf="${myconf} -no-sql-sqlite" - use debug && myconf="${myconf} -debug" || myconf="${myconf} -release -no-g++-exceptions" - - ./configure ${myconf} -shared -depths 8,16,24,32 -system-zlib -thread -stl \ - -freetype -qvfb -plugin-imgfmt-{jpeg,mng,png} -system-lib{jpeg,mng,png} \ - -prefix ${QTBASE} -platform ${PLATFORM} -xplatform ${XPLATFORM} \ - -embedded -no-sql-odbc || die - - export LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" - - cd ${S} && emake symlinks src-qmake src-moc sub-src || die "make failed" - - # the designer is not compiled when using -embedded, but we need the uic - cd ${S}/tools/designer/uic && emake || die "making uic failed" - - cd ${S} && emake sub-tools || die "making tools failed" - - if use doc; then - cd ${S} && emake sub-tutorial sub-examples || die "making examples failed" - fi -} - -src_install() { - INSTALL_ROOT=${D} emake install - - # fix .prl files - find ${D}/${QTBASE}/lib* -name "*.prl" -exec sed -i -e "s:${S}:${QTBASE}:g" {} \; - - # remove broken link - rm -f ${D}/${QTBASE}/mkspecs/${PLATFORM}/${PLATFORM} - - # fonts - insinto ${QTBASE}/lib/fonts - doins ${S}/lib/fonts/* - - # environment variables - cat <<EOF > ${T}/47qt-embedded3 -PATH=${QTBASE}/bin -ROOTPATH=${QTBASE}/bin -LDPATH=${QTBASE}/lib -EOF - doenvd ${T}/47qt-embedded3 - - # qmake cache file - sed -i -e "s:${S}:${QTBASE}:" .qmake.cache - insinto ${QTBASE} - doins .qmake.cache - - # documentation - if use doc; then - find examples tutorial -name Makefile -exec sed -i -e "s:${S}:${QTBASE}:g" {} \; - - cp -r ${S}/tutorial ${D}/${QTBASE} - cp -r ${S}/examples ${D}/${QTBASE} - fi - - # default target link (overriden by QMAKESPEC env var) - rm -f "${D}/${QTBASE}/mkspecs/default" - ln -s "${XPLATFORM}" "${D}/${QTBASE}/mkspecs/default" -} - -pkg_postinst() { - echo - einfo "If you want to compile and run a test application using" - einfo "QT/Embedded instead of standard Qt, you must properly" - einfo "set the QTDIR and QMAKESPEC variables, e.g.:" - einfo - einfo " export QTDIR=${QTBASE}" - einfo " export QMAKESPEC=${QTBASE}/mkspecs/${XPLATFORM}" - echo -} |