diff options
author | David Holm <dholm@gentoo.org> | 2004-07-06 11:29:31 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-07-06 11:29:31 +0000 |
commit | 4cfe06cfc30f2c6162709b73b3de2ec0ad1813c7 (patch) | |
tree | 8501c4f0c24f24fbcf7a3a6ede872a9fbdb084ab /x11-libs/qt-embedded | |
parent | Added to ~ppc (Manifest recommit) (Manifest recommit) (diff) | |
download | gentoo-2-4cfe06cfc30f2c6162709b73b3de2ec0ad1813c7.tar.gz gentoo-2-4cfe06cfc30f2c6162709b73b3de2ec0ad1813c7.tar.bz2 gentoo-2-4cfe06cfc30f2c6162709b73b3de2ec0ad1813c7.zip |
Added to ~ppc
Diffstat (limited to 'x11-libs/qt-embedded')
-rw-r--r-- | x11-libs/qt-embedded/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/qt-embedded/qt-embedded-3.3.2-r1.ebuild | 16 |
2 files changed, 17 insertions, 4 deletions
diff --git a/x11-libs/qt-embedded/ChangeLog b/x11-libs/qt-embedded/ChangeLog index 1c50580d3bfc..05aa1afc09fb 100644 --- a/x11-libs/qt-embedded/ChangeLog +++ b/x11-libs/qt-embedded/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/qt-embedded # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/ChangeLog,v 1.9 2004/07/06 02:28:54 chrb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/ChangeLog,v 1.10 2004/07/06 11:29:31 dholm Exp $ + + 06 Jul 2004; David Holm <dholm@gentoo.org> qt-embedded-3.3.2-r1.ebuild: + Added to ~ppc. 06 Jul 2004; Chris Bainbridge <chrb@gentoo.org> qt-embedded-3.3.2-r1.ebuild: -m Added ~amd64 (bug #53403) diff --git a/x11-libs/qt-embedded/qt-embedded-3.3.2-r1.ebuild b/x11-libs/qt-embedded/qt-embedded-3.3.2-r1.ebuild index 6fb33c929ce8..a827e15eed37 100644 --- a/x11-libs/qt-embedded/qt-embedded-3.3.2-r1.ebuild +++ b/x11-libs/qt-embedded/qt-embedded-3.3.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 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.2-r1.ebuild,v 1.2 2004/07/06 02:28:54 chrb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/qt-embedded-3.3.2-r1.ebuild,v 1.3 2004/07/06 11:29:31 dholm Exp $ DESCRIPTION="QT version ${PV}" HOMEPAGE="http://www.trolltech.com/" @@ -8,7 +8,7 @@ SRC_URI="ftp://ftp.trolltech.com/qt/source/qt-embedded-free-${PV}.tar.bz2" LICENSE="QPL-1.0 | GPL-2" SLOT="3" -KEYWORDS="~x86 ~amd64" +KEYWORDS="~x86 ~amd64 ~ppc" IUSE="gif opengl mysql odbc postgres debug build doc" DEPEND="media-libs/lcms @@ -56,7 +56,17 @@ src_compile() { 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 odbc && myconf="${myconf} -plugin-sql-odbc" || myconf="${myconf} -no-sql-odbc" use debug && myconf="${myconf} -debug" || myconf="${myconf} -release -no-g++-exceptions" - use x86 && myconf="$myconf -embedded x86" || myconf="$myconf -xplatform generic -embedded generic" + case ${ARCH} in + x86) + myconf="$myconf -embedded x86" + ;; + ppc) + myconf="$myconf -embedded generic" + ;; + *) + myconf="$myconf -xplatform generic -embedded generic" + ;; + esac ./configure $myconf -shared -depths 8,16,24,32 -system-zlib -thread -stl \ -freetype -qvfb -plugin-imgfmt-{jpeg,mng,png} -system-lib{png,jpeg,mng} \ |