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 | 49653d358fd2c003f9b26c6e34fe37702f23b70c (patch) | |
tree | 2266ba908fef4311a2b3003212346951ab3752b6 | |
parent | version bump (diff) | |
download | historical-49653d358fd2c003f9b26c6e34fe37702f23b70c.tar.gz historical-49653d358fd2c003f9b26c6e34fe37702f23b70c.tar.bz2 historical-49653d358fd2c003f9b26c6e34fe37702f23b70c.zip |
put defines in the right place
-rw-r--r-- | app-office/abiword/Manifest | 2 | ||||
-rw-r--r-- | app-office/abiword/abiword-2.2.3.ebuild | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-office/abiword/Manifest b/app-office/abiword/Manifest index cb23b48cf9a2..8197dab764eb 100644 --- a/app-office/abiword/Manifest +++ b/app-office/abiword/Manifest @@ -1,4 +1,4 @@ -MD5 5ffc39b07bcd9fd58400f4e704d31f47 abiword-2.2.3.ebuild 2294 +MD5 ef56d8148a57e79f6994008a540e4b64 abiword-2.2.3.ebuild 2343 MD5 498d6eaacd8ef30cb5e7899581d45be5 abiword-2.2.5.ebuild 2286 MD5 728e85c3f04c02a833f996e3a6ecfbdf abiword-2.0.10.ebuild 2440 MD5 9ba3c56a7ac3936cbf08b6f956b1ce2f abiword-2.2.2.ebuild 2262 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 |