* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild
@ 2007-12-20 16:08 Caleb Tennis (caleb)
0 siblings, 0 replies; 7+ messages in thread
From: Caleb Tennis (caleb) @ 2007-12-20 16:08 UTC (permalink / raw
To: gentoo-commits
caleb 07/12/20 16:08:00
Modified: qt-webkit-4.4.0_rc1.ebuild
Log:
Add webkit to qconfig.pri
(Portage version: 2.1.3.16)
Revision Changes Path
1.2 x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?r1=1.1&r2=1.2
Index: qt-webkit-4.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qt-webkit-4.4.0_rc1.ebuild 20 Dec 2007 12:25:40 -0000 1.1
+++ qt-webkit-4.4.0_rc1.ebuild 20 Dec 2007 16:07:59 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.1 2007/12/20 12:25:40 caleb Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.2 2007/12/20 16:07:59 caleb Exp $
inherit eutils flag-o-matic toolchain-funcs multilib
@@ -39,26 +39,10 @@
QTDEMOSDIR=${QTDATADIR}/demos
}
-qt_use() {
- local flag="$1"
- local feature="$1"
- local enableval=
-
- [[ -n $2 ]] && feature=$2
- [[ -n $3 ]] && enableval="-$3"
-
- useq $flag && echo "${enableval}-${feature}" || echo "-no-${feature}"
- return 0
-}
-
src_unpack() {
unpack ${A}
cd "${S}"
- # epatch "${FILESDIR}"/qt-4.2.3-hppa-ldcw-fix.patch
-
- cd "${S}"/mkspecs/$(qt_mkspecs_dir)
- # set c/xxflags and ldflags
# 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.
@@ -70,7 +54,9 @@
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() {
@@ -125,3 +111,17 @@
dodir ${QTPCDIR}
mv "${D}"/${QTLIBDIR}/pkgconfig/*.pc "${D}"/${QTPCDIR}
}
+
+pkg_postinst()
+{
+ # Need to add webkit to QT_CONFIG line
+ sed -i -e "s:webkit ::g" ${QTDATADIR}/mkspecs/qconfig.pri
+ sed -i -e "s:QT_CONFIG += :QT_CONFIG += webkit :g" ${QTDATADIR}/mkspecs/qconfig.pri
+}
+
+pkg_postrm()
+{
+ # Need to add qdbus to QT_CONFIG line
+ sed -i -e "s:webkit ::g" ${QTDATADIR}/mkspecs/qconfig.pri
+}
+
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild
@ 2007-12-20 17:25 Caleb Tennis (caleb)
0 siblings, 0 replies; 7+ messages in thread
From: Caleb Tennis (caleb) @ 2007-12-20 17:25 UTC (permalink / raw
To: gentoo-commits
caleb 07/12/20 17:25:23
Modified: qt-webkit-4.4.0_rc1.ebuild
Log:
Add qwebview to build/install
(Portage version: 2.1.3.16)
Revision Changes Path
1.3 x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?r1=1.2&r2=1.3
Index: qt-webkit-4.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qt-webkit-4.4.0_rc1.ebuild 20 Dec 2007 16:07:59 -0000 1.2
+++ qt-webkit-4.4.0_rc1.ebuild 20 Dec 2007 17:25:23 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.2 2007/12/20 16:07:59 caleb Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.3 2007/12/20 17:25:23 caleb Exp $
inherit eutils flag-o-matic toolchain-funcs multilib
@@ -94,12 +94,18 @@
cd "${S}"/src/3rdparty/webkit/WebCore
qmake "LIBS+=-L${QTLIBDIR}" && emake || die
+
+ cd "${S}"/tools/designer/src/plugins/qwebview
+ qmake "LIBS+=-L${QTLIBDIR}" && emake || die
}
src_install() {
cd "${S}"/src/3rdparty/webkit/WebCore
emake INSTALL_ROOT="${D}" install || die
+ cd "${S}"/tools/designer/src/plugins/qwebview
+ 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
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild
@ 2007-12-20 22:08 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 7+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2007-12-20 22:08 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 07/12/20 22:08:12
Modified: qt-webkit-4.4.0_rc1.ebuild
Log:
whitespace
(Portage version: 2.1.3.19)
Revision Changes Path
1.4 x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?r1=1.3&r2=1.4
Index: qt-webkit-4.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qt-webkit-4.4.0_rc1.ebuild 20 Dec 2007 17:25:23 -0000 1.3
+++ qt-webkit-4.4.0_rc1.ebuild 20 Dec 2007 22:08:12 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.3 2007/12/20 17:25:23 caleb Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.4 2007/12/20 22:08:12 mr_bones_ Exp $
inherit eutils flag-o-matic toolchain-funcs multilib
@@ -130,4 +130,3 @@
# Need to add qdbus to QT_CONFIG line
sed -i -e "s:webkit ::g" ${QTDATADIR}/mkspecs/qconfig.pri
}
-
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild
@ 2007-12-21 19:34 Caleb Tennis (caleb)
0 siblings, 0 replies; 7+ messages in thread
From: Caleb Tennis (caleb) @ 2007-12-21 19:34 UTC (permalink / raw
To: gentoo-commits
caleb 07/12/21 19:34:08
Modified: qt-webkit-4.4.0_rc1.ebuild
Log:
Use new eclass for build
(Portage version: 2.1.3.16)
Revision Changes Path
1.5 x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?r1=1.4&r2=1.5
Index: qt-webkit-4.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qt-webkit-4.4.0_rc1.ebuild 20 Dec 2007 22:08:12 -0000 1.4
+++ qt-webkit-4.4.0_rc1.ebuild 21 Dec 2007 19:34:07 -0000 1.5
@@ -1,11 +1,11 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.4 2007/12/20 22:08:12 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.5 2007/12/21 19:34:07 caleb Exp $
-inherit eutils flag-o-matic toolchain-funcs multilib
+inherit qt4-build
SRCTYPE="preview-opensource-src"
-DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework."
+DESCRIPTION="The Webkit module for the Qt toolkit."
HOMEPAGE="http://www.trolltech.com/"
MY_PV=${PV/_rc/-tp}
@@ -17,116 +17,44 @@
SLOT="4"
KEYWORDS="~x86"
-IUSE="debug pch"
+IUSE="debug"
-RDEPEND="=x11-libs/qt-4.4.0_rc1"
+RDEPEND="~x11-libs/qt-gui-${PV}"
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() {
+ qt4-build_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
+ skip_qmake_build_patch
+ skip_project_generation_patch
+ install_binaries_to_buildtree
}
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)"
+ local myconf=$(standard_configure_options)
- # 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 -webkit"
- use debug && myconf="${myconf} -debug -no-separate-debug-info" || myconf="${myconf} -release -no-separate-debug-info"
- use pch && myconf="${myconf} -pch" || myconf="${myconf} -no-pch"
- 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}"
+ myconf="${myconf} -webkit"
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/3rdparty/webkit/WebCore
- qmake "LIBS+=-L${QTLIBDIR}" && emake || die
-
- cd "${S}"/tools/designer/src/plugins/qwebview
- qmake "LIBS+=-L${QTLIBDIR}" && emake || die
+ build_directories src/3rdparty/webkit/WebCore tools/designer/src/plugins/qwebview
}
src_install() {
- cd "${S}"/src/3rdparty/webkit/WebCore
- emake INSTALL_ROOT="${D}" install || die
-
- cd "${S}"/tools/designer/src/plugins/qwebview
- emake INSTALL_ROOT="${D}" install || die
+ install_directories src/3rdparty/webkit/WebCore tools/designer/src/plugins/qwebview
- 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}
+ fix_library_files
}
pkg_postinst()
{
- # Need to add webkit to QT_CONFIG line
- sed -i -e "s:webkit ::g" ${QTDATADIR}/mkspecs/qconfig.pri
- sed -i -e "s:QT_CONFIG += :QT_CONFIG += webkit :g" ${QTDATADIR}/mkspecs/qconfig.pri
+ qconfig_add_option webkit
}
pkg_postrm()
{
- # Need to add qdbus to QT_CONFIG line
- sed -i -e "s:webkit ::g" ${QTDATADIR}/mkspecs/qconfig.pri
+ qconfig_remove_option webkit
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild
@ 2007-12-21 20:06 Caleb Tennis (caleb)
0 siblings, 0 replies; 7+ messages in thread
From: Caleb Tennis (caleb) @ 2007-12-21 20:06 UTC (permalink / raw
To: gentoo-commits
caleb 07/12/21 20:06:12
Modified: qt-webkit-4.4.0_rc1.ebuild
Log:
Use flag fix
(Portage version: 2.1.3.16)
Revision Changes Path
1.6 x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?r1=1.5&r2=1.6
Index: qt-webkit-4.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- qt-webkit-4.4.0_rc1.ebuild 21 Dec 2007 19:34:07 -0000 1.5
+++ qt-webkit-4.4.0_rc1.ebuild 21 Dec 2007 20:06:11 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.5 2007/12/21 19:34:07 caleb Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.6 2007/12/21 20:06:11 caleb Exp $
inherit qt4-build
@@ -17,8 +17,6 @@
SLOT="4"
KEYWORDS="~x86"
-IUSE="debug"
-
RDEPEND="~x11-libs/qt-gui-${PV}"
DEPEND="${RDEPEND}"
@@ -58,3 +56,4 @@
{
qconfig_remove_option webkit
}
+
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild
@ 2007-12-21 22:38 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 7+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2007-12-21 22:38 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 07/12/21 22:38:39
Modified: qt-webkit-4.4.0_rc1.ebuild
Log:
whitespace
(Portage version: 2.1.3.19)
Revision Changes Path
1.7 x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?r1=1.6&r2=1.7
Index: qt-webkit-4.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qt-webkit-4.4.0_rc1.ebuild 21 Dec 2007 20:06:11 -0000 1.6
+++ qt-webkit-4.4.0_rc1.ebuild 21 Dec 2007 22:38:38 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.6 2007/12/21 20:06:11 caleb Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.7 2007/12/21 22:38:38 mr_bones_ Exp $
inherit qt4-build
@@ -21,7 +21,6 @@
DEPEND="${RDEPEND}"
-
src_unpack() {
qt4-build_src_unpack
@@ -56,4 +55,3 @@
{
qconfig_remove_option webkit
}
-
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild
@ 2007-12-22 18:16 Caleb Tennis (caleb)
0 siblings, 0 replies; 7+ messages in thread
From: Caleb Tennis (caleb) @ 2007-12-22 18:16 UTC (permalink / raw
To: gentoo-commits
caleb 07/12/22 18:16:33
Modified: qt-webkit-4.4.0_rc1.ebuild
Log:
Use new eclass functions
(Portage version: 2.1.3.16)
Revision Changes Path
1.8 x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild?r1=1.7&r2=1.8
Index: qt-webkit-4.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- qt-webkit-4.4.0_rc1.ebuild 21 Dec 2007 22:38:38 -0000 1.7
+++ qt-webkit-4.4.0_rc1.ebuild 22 Dec 2007 18:16:33 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.7 2007/12/21 22:38:38 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.0_rc1.ebuild,v 1.8 2007/12/22 18:16:33 caleb Exp $
inherit qt4-build
@@ -21,6 +21,8 @@
DEPEND="${RDEPEND}"
+QT4_TARGET_DIRECTORIES="src/3rdparty/webkit/WebCore tools/designer/src/plugins/qwebview"
+
src_unpack() {
qt4-build_src_unpack
@@ -37,13 +39,7 @@
echo ./configure ${myconf}
./configure ${myconf} || die
- build_directories src/3rdparty/webkit/WebCore tools/designer/src/plugins/qwebview
-}
-
-src_install() {
- install_directories src/3rdparty/webkit/WebCore tools/designer/src/plugins/qwebview
-
- fix_library_files
+ build_target_directories
}
pkg_postinst()
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-12-22 18:16 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-21 22:38 [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.4.0_rc1.ebuild Michael Sterrett (mr_bones_)
-- strict thread matches above, loose matches on Subject: below --
2007-12-22 18:16 Caleb Tennis (caleb)
2007-12-21 20:06 Caleb Tennis (caleb)
2007-12-21 19:34 Caleb Tennis (caleb)
2007-12-20 22:08 Michael Sterrett (mr_bones_)
2007-12-20 17:25 Caleb Tennis (caleb)
2007-12-20 16:08 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