diff options
author | Marinus Schraal <foser@gentoo.org> | 2005-03-22 00:17:10 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2005-03-22 00:17:10 +0000 |
commit | 6ed349f1755e50692178351f07fab5de0eb21b15 (patch) | |
tree | b424b56dd647ff49f053fdd7189a6f994e67a080 /app-office | |
parent | stabling fakeroot 1.1.5 on x86. (diff) | |
download | gentoo-2-6ed349f1755e50692178351f07fab5de0eb21b15.tar.gz gentoo-2-6ed349f1755e50692178351f07fab5de0eb21b15.tar.bz2 gentoo-2-6ed349f1755e50692178351f07fab5de0eb21b15.zip |
put defines in the right place
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/abiword/abiword-2.2.3.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app-office/abiword/abiword-2.2.3.ebuild b/app-office/abiword/abiword-2.2.3.ebuild index 62b1c97dad78..a77cb27fdb57 100644 --- a/app-office/abiword/abiword-2.2.3.ebuild +++ b/app-office/abiword/abiword-2.2.3.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/abiword/abiword-2.2.3.ebuild,v 1.3 2005/03/22 00:04:28 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/abiword/abiword-2.2.3.ebuild,v 1.4 2005/03/22 00:17:10 foser Exp $ inherit eutils fdo-mime @@ -59,7 +59,10 @@ src_compile() { --disable-scripting \ --with-sys-wv || die - emake all-recursive || die + + CFLAGS="${CFLAGS} -DHAVE_NAUTILUS=0" \ + CXXFLAGS="${CXXFLAGS} -DHAVE_NAUTILUS=0" \ + emake all-recursive || die # Build plugins @@ -79,7 +82,7 @@ src_install() { dodir /usr/{bin,lib} - CFLAGS="${CFLAGS} -DHAVE_NAUTILUS=0" make DESTDIR=${D} install || die + make DESTDIR=${D} install || die dosed "s:Exec=abiword:Exec=abiword-2.2:" /usr/share/applications/abiword.desktop |