diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2006-06-24 01:44:20 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2006-06-24 01:44:20 +0000 |
commit | 250aee391b1f13d504b915da788b66548e3038e9 (patch) | |
tree | 3f0a8981af7a2633e86e351c2e711dc4ba7b7826 /app-doc/doxygen/doxygen-1.4.2.ebuild | |
parent | USE flag qt->qt3/qt4 change bug #137785 (diff) | |
download | gentoo-2-250aee391b1f13d504b915da788b66548e3038e9.tar.gz gentoo-2-250aee391b1f13d504b915da788b66548e3038e9.tar.bz2 gentoo-2-250aee391b1f13d504b915da788b66548e3038e9.zip |
USE flag qt->qt3/qt4 change bug #137785
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'app-doc/doxygen/doxygen-1.4.2.ebuild')
-rw-r--r-- | app-doc/doxygen/doxygen-1.4.2.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app-doc/doxygen/doxygen-1.4.2.ebuild b/app-doc/doxygen/doxygen-1.4.2.ebuild index da32cca38dcc..507b95c7687a 100644 --- a/app-doc/doxygen/doxygen-1.4.2.ebuild +++ b/app-doc/doxygen/doxygen-1.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.4.2.ebuild,v 1.17 2006/04/09 00:33:58 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.4.2.ebuild,v 1.18 2006/06/24 01:44:20 cardoe Exp $ inherit eutils toolchain-funcs qt3 @@ -12,10 +12,10 @@ SRC_URI="ftp://ftp.stack.nl/pub/users/dimitri/${P}.src.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc-macos ppc64 s390 sparc x86" -IUSE="doc qt tetex unicode" +IUSE="doc qt3 tetex unicode" DEPEND="media-gfx/graphviz - qt? ( $(qt_min_version 3.3) ) + qt3? ( $(qt_min_version 3.3) ) tetex? ( virtual/tetex ) virtual/ghostscript >=sys-apps/sed-4" @@ -46,13 +46,13 @@ src_unpack() { src_compile() { # set ./configure options (prefix, Qt based wizard, docdir) local my_conf="--prefix ${D}usr" - if use qt; then + if use qt3; then einfo "using QTDIR: '$QTDIR'." export LD_LIBRARY_PATH=${QTDIR}/$(get_libdir):${LD_LIBRARY_PATH} export LIBRARY_PATH=${QTDIR}/$(get_libdir):${LIBRARY_PATH} einfo "using QT LIBRARY_PATH: '$LIBRARY_PATH'." einfo "using QT LD_LIBRARY_PATH: '$LD_LIBRARY_PATH'." - ./configure ${my_conf} $(use_with qt doxywizard) || die 'configure failed' + ./configure ${my_conf} $(use_with qt3 doxywizard) || die 'configure failed' else ./configure ${my_conf} || die 'configure failed' fi @@ -101,7 +101,7 @@ src_install() { pkg_postinst() { ewarn - einfo "The USE flags qt, doc, and tetex will enable doxywizard, or" + einfo "The USE flags qt3, doc, and tetex will enable doxywizard, or" einfo "the html and pdf documentation, respectively. For examples" einfo "and other goodies, see the source tarball. For some example" einfo "output, run doxygen on the doxygen source using the Doxyfile" |