From 8b21a1b19cbb6c2ec56aa4369c1eae4905fd8306 Mon Sep 17 00:00:00 2001 From: Gregorio Guidi Date: Sat, 4 Jun 2005 07:09:21 +0000 Subject: Fix stupid mistake in src_compile(). (Portage version: 2.0.51.19) --- app-office/koffice/koffice-1.4.0_rc1.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'app-office') diff --git a/app-office/koffice/koffice-1.4.0_rc1.ebuild b/app-office/koffice/koffice-1.4.0_rc1.ebuild index 2fd0cb8ff4ec..4883c066f323 100644 --- a/app-office/koffice/koffice-1.4.0_rc1.ebuild +++ b/app-office/koffice/koffice-1.4.0_rc1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-1.4.0_rc1.ebuild,v 1.1 2005/06/03 15:19:58 greg_g Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-1.4.0_rc1.ebuild,v 1.2 2005/06/04 07:09:21 greg_g Exp $ inherit kde eutils @@ -51,12 +51,16 @@ src_compile() { local myconf="$(use_enable mysql) $(use_enable postgres pgsql)" kde_src_compile - use doc && make apidox || die + if use doc; then + make apidox || die + fi } src_install() { kde_src_install - use doc && make install-apidox || die + if use doc; then + make DESTDIR="${D}" install-apidox || die + fi dodoc changes-* } -- cgit v1.2.3-65-gdbad