diff options
author | Ben de Groot <yngwin@gentoo.org> | 2008-09-19 00:09:10 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2008-09-19 00:09:10 +0000 |
commit | 0ecf935db236223427bd406f617cf4715657f84a (patch) | |
tree | 99e59ad7a219ffca862a5b44f4a5669ce5f27ca7 /x11-libs/qt-assistant | |
parent | qt-4.4.2 version bump (diff) | |
download | gentoo-2-0ecf935db236223427bd406f617cf4715657f84a.tar.gz gentoo-2-0ecf935db236223427bd406f617cf4715657f84a.tar.bz2 gentoo-2-0ecf935db236223427bd406f617cf4715657f84a.zip |
qt-4.4.2 version bump
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.5 i686)
Diffstat (limited to 'x11-libs/qt-assistant')
-rw-r--r-- | x11-libs/qt-assistant/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-assistant/qt-assistant-4.4.2.ebuild | 56 |
2 files changed, 62 insertions, 1 deletions
diff --git a/x11-libs/qt-assistant/ChangeLog b/x11-libs/qt-assistant/ChangeLog index aea1496d2a42..ace17bd2fb76 100644 --- a/x11-libs/qt-assistant/ChangeLog +++ b/x11-libs/qt-assistant/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qt-assistant # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.13 2008/08/11 12:56:22 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.14 2008/09/19 00:09:10 yngwin Exp $ + +*qt-assistant-4.4.2 (18 Sep 2008) + + 18 Sep 2008; Ben de Groot <yngwin@gentoo.org> +qt-assistant-4.4.2.ebuild: + Version bump *qt-assistant-4.4.1 (11 Aug 2008) diff --git a/x11-libs/qt-assistant/qt-assistant-4.4.2.ebuild b/x11-libs/qt-assistant/qt-assistant-4.4.2.ebuild new file mode 100644 index 000000000000..aec305778c96 --- /dev/null +++ b/x11-libs/qt-assistant/qt-assistant-4.4.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2.ebuild,v 1.1 2008/09/19 00:09:10 yngwin Exp $ + +EAPI="1" +inherit qt4-build + +DESCRIPTION="The assistant help module for the Qt toolkit." +HOMEPAGE="http://www.trolltech.com/" + +LICENSE="|| ( GPL-3 GPL-2 )" +SLOT="4" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="~x11-libs/qt-gui-${PV} + ~x11-libs/qt-sql-${PV} + !<=x11-libs/qt-4.4.0_alpha:${SLOT}" +RDEPEND="${DEPEND}" + +# Pixeltool isn't really assistant related, but it relies on +# the assistant libraries. +QT4_TARGET_DIRECTORIES="tools/assistant tools/pixeltool" +QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} +doc/qch/ +src/3rdparty/clucene/ +tools/shared/fontpanel" + +pkg_setup() { + qt4-build_pkg_setup + + if ! built_with_use x11-libs/qt-sql sqlite; then + die "You must first emerge x11-libs/qt-sql with the \"sqlite\" use flag in order to use qt-assistant" + fi +} + +src_compile() { + local myconf + + 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 -no-openssl -system-zlib -no-webkit -no-phonon + -no-xmlpatterns -no-freetype -no-libtiff -no-accessibility -no-fontconfig + -no-glib -no-opengl -no-qt3support -no-svg" + + qt4-build_src_compile +} + +src_install() { + qt4-build_src_install + domenu "${FILESDIR}"/Assistant.desktop || die "domenu failed" + + insinto ${QTDOCDIR} + doins -r doc/qch/ || die 'Installing qch files failed.' +} |