diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2006-02-08 08:47:35 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2006-02-08 08:47:35 +0000 |
commit | 469a9d0dbc372516a6bcf4f1e3a57350d1eeb5eb (patch) | |
tree | 576dd749ee8b40de53bec18d6e723dfcfaba42ec /app-doc/doxygen/doxygen-1.4.2.ebuild | |
parent | stable on x86 ; ported to mod-x deps (diff) | |
download | gentoo-2-469a9d0dbc372516a6bcf4f1e3a57350d1eeb5eb.tar.gz gentoo-2-469a9d0dbc372516a6bcf4f1e3a57350d1eeb5eb.tar.bz2 gentoo-2-469a9d0dbc372516a6bcf4f1e3a57350d1eeb5eb.zip |
updated all versions with kluge for QT environment lameness
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'app-doc/doxygen/doxygen-1.4.2.ebuild')
-rw-r--r-- | app-doc/doxygen/doxygen-1.4.2.ebuild | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/app-doc/doxygen/doxygen-1.4.2.ebuild b/app-doc/doxygen/doxygen-1.4.2.ebuild index f8b7e130b7b7..588ae9be6264 100644 --- a/app-doc/doxygen/doxygen-1.4.2.ebuild +++ b/app-doc/doxygen/doxygen-1.4.2.ebuild @@ -1,8 +1,8 @@ # 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.15 2006/01/29 15:41:41 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.4.2.ebuild,v 1.16 2006/02/08 08:47:35 nerdboy Exp $ -inherit eutils toolchain-funcs +inherit eutils toolchain-funcs kde-functions DESCRIPTION="Documentation and analysis tool for C++, C, Java, IDL, PHP and C#" HOMEPAGE="http://www.doxygen.org/" @@ -20,6 +20,8 @@ DEPEND="media-gfx/graphviz virtual/ghostscript >=sys-apps/sed-4" +if use qt; then need-qt 3; fi + src_unpack() { unpack ${A} cd ${S} @@ -47,13 +49,18 @@ src_compile() { # set ./configure options (prefix, Qt based wizard, docdir) local my_conf="--prefix ${D}usr" if use qt; then - export LD_LIBRARY_PATH=$QTDIR/$(get_libdir):$LD_LIBRARY_PATH \ - export LIBRARY_PATH=$QTDIR/$(get_libdir):$LIBRARY_PATH \ - my_conf="${my_conf} $(use_with qt doxywizard)" + einfo "using QT version: '$QTVER'." + 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' + else + ./configure ${my_conf} || die 'configure failed' fi - # ./configure and compile - ./configure ${my_conf} || die '"./configure" failed.' + # and compile make DESTDIR="${D}" all || die '"make all" failed.' # generate html and pdf (if tetex in use) documents. |