diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2005-12-21 03:30:53 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2005-12-21 03:30:53 +0000 |
commit | b0c9e07e6a20549ea2350161449f38f2c5d688fd (patch) | |
tree | a51165b66192f539efe8e4da8c5c7c96dc6a1bed /app-doc/doxygen/doxygen-1.4.4.ebuild | |
parent | Version bump. closes bug #115721 (diff) | |
download | gentoo-2-b0c9e07e6a20549ea2350161449f38f2c5d688fd.tar.gz gentoo-2-b0c9e07e6a20549ea2350161449f38f2c5d688fd.tar.bz2 gentoo-2-b0c9e07e6a20549ea2350161449f38f2c5d688fd.zip |
patched all versions with fixes for bugs 112076 and 113420
(Portage version: 2.1_pre1)
Diffstat (limited to 'app-doc/doxygen/doxygen-1.4.4.ebuild')
-rw-r--r-- | app-doc/doxygen/doxygen-1.4.4.ebuild | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/app-doc/doxygen/doxygen-1.4.4.ebuild b/app-doc/doxygen/doxygen-1.4.4.ebuild index 60e53097f35b..2959e19edf2c 100644 --- a/app-doc/doxygen/doxygen-1.4.4.ebuild +++ b/app-doc/doxygen/doxygen-1.4.4.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.4.4.ebuild,v 1.10 2005/11/24 18:36:37 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.4.4.ebuild,v 1.11 2005/12/21 03:30:53 nerdboy Exp $ -inherit eutils +inherit eutils toolchain-funcs DESCRIPTION="Documentation and analysis tool for C++, C, Java, IDL, PHP and C#" HOMEPAGE="http://www.doxygen.org/" @@ -11,7 +11,7 @@ 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" +IUSE="doc qt tetex unicode" RDEPEND="media-gfx/graphviz qt? ( =x11-libs/qt-3* ) @@ -27,8 +27,17 @@ src_unpack() { sed -i.orig -e "s:^\(TMAKE_CFLAGS_RELEASE\t*\)= .*$:\1= ${CFLAGS}:" \ -e "s:^\(TMAKE_CXXFLAGS_RELEASE\t*\)= .*$:\1= ${CXXFLAGS}:" \ tmake/lib/{linux-g++,macosx-c++}/tmake.conf + epatch ${FILESDIR}/doxygen-1.4.3-cp1251.patch epatch ${FILESDIR}/${P}-darwin.patch + + if use unicode; then + epatch ${FILESDIR}/${PN}-utf8-ru.patch.gz || die "utf8-ru patch failed" + fi + + if [ $(gcc-major-version) -eq 4 ] ; then + epatch ${FILESDIR}/${PN}-gcc4.patch || die "gcc4 patch failed" + fi } src_compile() { |