public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-opengl: qt-opengl-4.4.0_rc1.ebuild metadata.xml ChangeLog Manifest
@ 2007-12-20 16:33 Caleb Tennis (caleb)
  0 siblings, 0 replies; only message in thread
From: Caleb Tennis (caleb) @ 2007-12-20 16:33 UTC (permalink / raw
  To: gentoo-commits

caleb       07/12/20 16:33:03

  Added:                qt-opengl-4.4.0_rc1.ebuild metadata.xml ChangeLog
                        Manifest
  Log:
  Initial ebuild
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.1                  x11-libs/qt-opengl/qt-opengl-4.4.0_rc1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/qt-opengl-4.4.0_rc1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/qt-opengl-4.4.0_rc1.ebuild?rev=1.1&content-type=text/plain

Index: qt-opengl-4.4.0_rc1.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-opengl/qt-opengl-4.4.0_rc1.ebuild,v 1.1 2007/12/20 16:33:02 caleb Exp $

inherit eutils flag-o-matic toolchain-funcs multilib

SRCTYPE="preview-opensource-src"
DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework."
HOMEPAGE="http://www.trolltech.com/"

MY_PV=${PV/_rc/-tp}

SRC_URI="ftp://ftp.trolltech.com/pub/qt/source/qt-x11-${SRCTYPE}-${MY_PV}.tar.gz"
S=${WORKDIR}/qt-x11-${SRCTYPE}-${MY_PV}

LICENSE="|| ( QPL-1.0 GPL-2 )"
SLOT="4"
KEYWORDS="~x86"

IUSE="debug"

RDEPEND="=x11-libs/qt-4.4.0_rc1
	( virtual/opengl virtual/glu )"

DEPEND="${RDEPEND}"

pkg_setup() {
	QTBASEDIR=/usr/$(get_libdir)/qt4
	QTPREFIXDIR=/usr
	QTBINDIR=/usr/bin
	QTLIBDIR=/usr/$(get_libdir)/qt4
	QTPCDIR=/usr/$(get_libdir)/pkgconfig
	QTDATADIR=/usr/share/qt4
	QTDOCDIR=/usr/share/doc/${PF}
	QTHEADERDIR=/usr/include/qt4
	QTPLUGINDIR=${QTLIBDIR}/plugins
	QTSYSCONFDIR=/etc/qt4
	QTTRANSDIR=${QTDATADIR}/translations
	QTEXAMPLESDIR=${QTDATADIR}/examples
	QTDEMOSDIR=${QTDATADIR}/demos
}

src_unpack() {

	unpack ${A}
	cd "${S}"

	# Don't let the user go too overboard with flags.  If you really want to, uncomment
	# out the line below and give 'er a whirl.
	strip-flags
	replace-flags -O3 -O2

	if [[ $( gcc-fullversion ) == "3.4.6" && gcc-specs-ssp ]] ; then
		ewarn "Appending -fno-stack-protector to CFLAGS/CXXFLAGS"
		append-flags -fno-stack-protector
	fi

	# Override the creation of qmake and copy over the one from the system.  This speeds up compilation time a lot.
	epatch "${FILESDIR}"/configure.patch
	cp ${QTBINDIR}/qmake "${S}"/bin/qmake

}

src_compile() {
	export PATH="${S}/bin:${PATH}"
	export LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}"

	[ $(get_libdir) != "lib" ] && myconf="${myconf} -L/usr/$(get_libdir)"

	# Disable visibility explicitly if gcc version isn't 4
	if [[ "$(gcc-major-version)" != "4" ]]; then
		myconf="${myconf} -no-reduce-exports"
	fi

	# Add a switch that will attempt to use recent binutils to reduce relocations.  Should be harmless for other
	# cases.  From bug #178535
	myconf="${myconf} -fast -reduce-relocations -opengl"
	use debug	&& myconf="${myconf} -debug -no-separate-debug-info" || myconf="${myconf} -release -no-separate-debug-info"

	myconf="${myconf} -nomake examples -nomake demos"

	myconf="-stl -verbose -largefile -confirm-license \
		-no-rpath \
		-prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} -datadir ${QTDATADIR} \
		-docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} -plugindir ${QTPLUGINDIR} \
		-sysconfdir ${QTSYSCONFDIR} -translationdir ${QTTRANSDIR} \
		-examplesdir ${QTEXAMPLESDIR} -demosdir ${QTDEMOSDIR} ${myconf}"

	echo ./configure ${myconf}
	./configure ${myconf} || die

	# Edit the .qmake.cache file
	sed -i -e "s:QMAKE_MOC:\#QMAKE_MOC:g" "${S}"/.qmake.cache
	sed -i -e "s:QMAKE_UIC:\#QMAKE_UIC:g" "${S}"/.qmake.cache
	sed -i -e "s:QMAKE_RCC:\#QMAKE_RCC:g" "${S}"/.qmake.cache

	cd "${S}"/src/opengl
	qmake "LIBS+=-L${QTLIBDIR}" && emake || die

	# Currently commented out of the TT's Qt build
	# cd "${S}"/tools/designer/src/plugins/tools/view3d
	# qmake "LIBS+=-L${QTLIBDIR}" && emake || die
}

src_install() {
	export PATH="${S}/bin:${PATH}"
	export LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}"

	cd "${S}"/src/opengl
	emake INSTALL_ROOT="${D}" install || die

	# cd "${S}"/tools/designer/src/plugins/tools/view3d
	# emake INSTALL_ROOT="${D}" install || die

	sed -i -e "s:${S}/lib:${QTLIBDIR}:g" "${D}"/${QTLIBDIR}/*.la
	sed -i -e "s:${S}/lib:${QTLIBDIR}:g" "${D}"/${QTLIBDIR}/*.prl
	sed -i -e "s:${S}/lib:${QTLIBDIR}:g" "${D}"/${QTLIBDIR}/pkgconfig/*.pc

	# pkgconfig files refer to WORKDIR/bin as the moc and uic locations.  Fix:
	sed -i -e "s:${S}/bin:${QTBINDIR}:g" "${D}"/${QTLIBDIR}/pkgconfig/*.pc

	# Move .pc files into the pkgconfig directory
	dodir ${QTPCDIR}
	mv "${D}"/${QTLIBDIR}/pkgconfig/*.pc "${D}"/${QTPCDIR}
}

pkg_postinst()
{
	# Need to add opengl to QT_CONFIG line
	sed -i -e "s:opengl ::g" ${QTDATADIR}/mkspecs/qconfig.pri
	sed -i -e "s:QT_CONFIG += :QT_CONFIG += opengl :g" ${QTDATADIR}/mkspecs/qconfig.pri
}

pkg_postrm()
{
	# Need to add opengl to QT_CONFIG line
	sed -i -e "s:opengl ::g" ${QTDATADIR}/mkspecs/qconfig.pri
}




1.1                  x11-libs/qt-opengl/metadata.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>qt</herd> 
</pkgmetadata>



1.1                  x11-libs/qt-opengl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===================================================================
# ChangeLog for x11-libs/qt-opengl
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-opengl/ChangeLog,v 1.1 2007/12/20 16:33:02 caleb Exp $

*qt-opengl-4.4.0_rc1 (20 Dec 2007)

  20 Dec 2007; Caleb Tennis <caleb@gentoo.org> +files/configure.patch,
  +metadata.xml, +qt-opengl-4.4.0_rc1.ebuild:
  Initial import




1.1                  x11-libs/qt-opengl/Manifest

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/Manifest?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-opengl/Manifest?rev=1.1&content-type=text/plain

Index: Manifest
===================================================================
AUX configure.patch 321 RMD160 a2f720997a9ddcaef8e4d9d25f3a6120f065922b SHA1 aeb100048fa903673e84bc39f26b5e73739be7ed SHA256 ac571668b58304d1d7528b95c90e04da048a8f32e385e26a40255d854643c8dc
MD5 73c74fe39317680d0f47543a69afde27 files/configure.patch 321
RMD160 a2f720997a9ddcaef8e4d9d25f3a6120f065922b files/configure.patch 321
SHA256 ac571668b58304d1d7528b95c90e04da048a8f32e385e26a40255d854643c8dc files/configure.patch 321
DIST qt-x11-preview-opensource-src-4.4.0-tp1.tar.gz 56029137 RMD160 dd2dee9afaa9d16bdf5ca2bed82a3b9e2162bdd2 SHA1 e242dc542eb1424a51c47e7c80aaefd26668451c SHA256 1757416bda52c34ade3a49b5896bafe9e3cfe092d3180da32d520f94324c0b88
EBUILD qt-opengl-4.4.0_rc1.ebuild 4317 RMD160 c25253fd204f6ffcbc36581605f06e68d99bd1c0 SHA1 43b436c56eb96fb54ecf3a69ce0a53c5c6197b09 SHA256 9f8de9216ce286911777cd45bf0d97b07ab1392bc7e62d7fb032c6c7d6b062cb
MD5 00deed952f0b0affd67d75cce4ec3ad2 qt-opengl-4.4.0_rc1.ebuild 4317
RMD160 c25253fd204f6ffcbc36581605f06e68d99bd1c0 qt-opengl-4.4.0_rc1.ebuild 4317
SHA256 9f8de9216ce286911777cd45bf0d97b07ab1392bc7e62d7fb032c6c7d6b062cb qt-opengl-4.4.0_rc1.ebuild 4317
MISC ChangeLog 290 RMD160 74637f35ccf3caca8637b87c1d6453e93bc04b12 SHA1 3264e8f68504598a255e37d42a9348fae87e49d1 SHA256 61e0e9b1250491856a4153d7a964815affb28f891d7d231996a628230d6d5907
MD5 19e9cb2ccdccfe6a5595202b7733c78d ChangeLog 290
RMD160 74637f35ccf3caca8637b87c1d6453e93bc04b12 ChangeLog 290
SHA256 61e0e9b1250491856a4153d7a964815affb28f891d7d231996a628230d6d5907 ChangeLog 290
MISC metadata.xml 156 RMD160 d76590850d56864c8d99e6877ed15841b55ef1fc SHA1 e872bab086832a9db3f0fa9b1897c70577d3af21 SHA256 94c4f580c1a55f8a5e1a1dcdd6dedfea0b8bd78c1d7137c354938d73c49e4448
MD5 512150b47a904b0240101e319856aab1 metadata.xml 156
RMD160 d76590850d56864c8d99e6877ed15841b55ef1fc metadata.xml 156
SHA256 94c4f580c1a55f8a5e1a1dcdd6dedfea0b8bd78c1d7137c354938d73c49e4448 metadata.xml 156
MD5 82e8a2d695216d8ed9d69b21cb2b06fc files/digest-qt-opengl-4.4.0_rc1 325
RMD160 b82b94eb49ac3711f85f127b3b2d336ebc7e2711 files/digest-qt-opengl-4.4.0_rc1 325
SHA256 76d5f09c74420bfa920616103da36e3bab698f3932f4db60db3d499ff34abf0e files/digest-qt-opengl-4.4.0_rc1 325



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-12-20 16:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-20 16:33 [gentoo-commits] gentoo-x86 commit in x11-libs/qt-opengl: qt-opengl-4.4.0_rc1.ebuild metadata.xml ChangeLog Manifest Caleb Tennis (caleb)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox