diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2007-12-03 10:15:39 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2007-12-03 10:15:39 +0000 |
commit | 144a3783c2141ea7cb31817da6e3af9316746adc (patch) | |
tree | 32ff8e25bc4dafc2c70877830ea15772bc8aee7f /x11-libs/qwtplot3d | |
parent | Version bump. (diff) | |
download | gentoo-2-144a3783c2141ea7cb31817da6e3af9316746adc.tar.gz gentoo-2-144a3783c2141ea7cb31817da6e3af9316746adc.tar.bz2 gentoo-2-144a3783c2141ea7cb31817da6e3af9316746adc.zip |
Added check for opengl flag in qt and building doc with doxygen
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'x11-libs/qwtplot3d')
-rw-r--r-- | x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild b/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild index 62cb4c0859f7..33163276526e 100644 --- a/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild +++ b/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild @@ -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/qwtplot3d/qwtplot3d-0.2.7.ebuild,v 1.1 2007/11/28 23:13:49 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild,v 1.2 2007/12/03 10:15:39 bicatali Exp $ inherit multilib qt4 @@ -17,6 +17,8 @@ RDEPEND="$(qt4_min_version 4)" DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" +QT4_BUILT_WITH_USE_CHECK="opengl" + S="${WORKDIR}/${PN}" src_unpack () { @@ -34,6 +36,10 @@ src_compile () { eqmake4 ${PN}.pro || die "eqmake4 failed" emake || die "emake failed" + if use doc ; then + cd doc + doxygen Doxyfile.doxygen || die "doxygen failed" + fi } src_install () { |