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.6.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.6.ebuild')
-rw-r--r-- | app-doc/doxygen/doxygen-1.4.6.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app-doc/doxygen/doxygen-1.4.6.ebuild b/app-doc/doxygen/doxygen-1.4.6.ebuild index 13635b6fcc2c..ab6cc8d77a76 100644 --- a/app-doc/doxygen/doxygen-1.4.6.ebuild +++ b/app-doc/doxygen/doxygen-1.4.6.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.6.ebuild,v 1.6 2006/05/08 00:17:47 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.4.6.ebuild,v 1.7 2006/06/24 01:44:20 cardoe Exp $ inherit eutils toolchain-funcs qt3 @@ -13,10 +13,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 ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="doc qt tetex unicode" +IUSE="doc qt3 tetex unicode" RDEPEND=">=media-gfx/graphviz-2.6 - qt? ( $(qt_min_version 3.3) ) + qt3? ( $(qt_min_version 3.3) ) tetex? ( virtual/tetex ) virtual/ghostscript" DEPEND=">=sys-apps/sed-4 @@ -50,13 +50,13 @@ src_compile() { export ECFLAGS="${CFLAGS}" ECXXFLAGS="${CXXFLAGS}" ELDFLAGS="${LDFLAGS}" # 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 @@ -106,7 +106,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" |