diff options
author | Alastair Tse <liquidx@gentoo.org> | 2004-10-17 14:45:35 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2004-10-17 14:45:35 +0000 |
commit | 07492c0b01659d026df3ed65727ce6f6ddd3fa2e (patch) | |
tree | 4c5d4a15d9ae1e71b89fdb9a4459cd17c1ecee52 /gnome-extra | |
parent | fix typo for -ipv6 (#67824) (diff) | |
download | historical-07492c0b01659d026df3ed65727ce6f6ddd3fa2e.tar.gz historical-07492c0b01659d026df3ed65727ce6f6ddd3fa2e.tar.bz2 historical-07492c0b01659d026df3ed65727ce6f6ddd3fa2e.zip |
add workaround for different mutex.h for amd64 (#67818)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/evolution-data-server/ChangeLog | 6 | ||||
-rw-r--r-- | gnome-extra/evolution-data-server/evolution-data-server-1.0.2.ebuild | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/gnome-extra/evolution-data-server/ChangeLog b/gnome-extra/evolution-data-server/ChangeLog index 9c20afdb8a70..6a8ae3c467f2 100644 --- a/gnome-extra/evolution-data-server/ChangeLog +++ b/gnome-extra/evolution-data-server/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for gnome-extra/evolution-data-server # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog,v 1.11 2004/10/16 19:12:41 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog,v 1.12 2004/10/17 14:45:35 liquidx Exp $ + + 17 Oct 2004; Alastair Tse <liquidx@gentoo.org> + evolution-data-server-1.0.2.ebuild: + add workaround for different mutex.h for amd64 (#67818) *evolution-data-server-1.0.2 (16 Oct 2004) diff --git a/gnome-extra/evolution-data-server/evolution-data-server-1.0.2.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-1.0.2.ebuild index 0a1c1b27895a..9ed09a70725a 100644 --- a/gnome-extra/evolution-data-server/evolution-data-server-1.0.2.ebuild +++ b/gnome-extra/evolution-data-server/evolution-data-server-1.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-1.0.2.ebuild,v 1.1 2004/10/16 19:12:41 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-1.0.2.ebuild,v 1.2 2004/10/17 14:45:35 liquidx Exp $ inherit gnome2 @@ -32,6 +32,11 @@ G2CONF="${G2CONF} `use_with ldap openldap`" MAKEOPTS="${MAKEOPTS} -j1" USE_DESTDIR=1 +src_unpack() { + unpack ${A} + use amd64 && rm ${S}/libdb/dbinc/mutex.h +} + src_compile() { cd ${S}/libdb/dist ./s_config || die |