diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-04-08 01:05:44 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-04-08 01:05:44 +0000 |
commit | 3cbbc2e8ee89ffbe438e6a8f9aaf0573992afd8c (patch) | |
tree | 607840432e77789aff3d3141c8ffd758fcf79234 /net-mail/ezmlm | |
parent | Fix virtual/module-tools - virtual/modutils in PROVIDE (diff) | |
download | historical-3cbbc2e8ee89ffbe438e6a8f9aaf0573992afd8c.tar.gz historical-3cbbc2e8ee89ffbe438e6a8f9aaf0573992afd8c.tar.bz2 historical-3cbbc2e8ee89ffbe438e6a8f9aaf0573992afd8c.zip |
glibc 2.3.2 compile fix
Diffstat (limited to 'net-mail/ezmlm')
-rw-r--r-- | net-mail/ezmlm/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/ezmlm/ezmlm-0.53.ebuild | 7 | ||||
-rw-r--r-- | net-mail/ezmlm/files/digest-ezmlm-0.53 | 2 | ||||
-rw-r--r-- | net-mail/ezmlm/files/ezmlm-0.53-errno.patch | 9 |
4 files changed, 22 insertions, 2 deletions
diff --git a/net-mail/ezmlm/ChangeLog b/net-mail/ezmlm/ChangeLog index fc345aa0278c..9cb9f15660a5 100644 --- a/net-mail/ezmlm/ChangeLog +++ b/net-mail/ezmlm/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for net-mail/ezmlm # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm/ChangeLog,v 1.7 2003/02/12 08:10:19 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm/ChangeLog,v 1.8 2003/04/08 01:05:31 liquidx Exp $ 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords @@ -14,6 +14,10 @@ *ezmlm-0.53 (25 Mar 2002) + 08 Apr 2003; Alastair Tse <liquidx@gentoo.org> ezmlm-0.53.ebuild, + files/ezmlm-0.53-errno.patch: + errno fix for glibc-2.3.2. thanks to Sebastian Klemke <packet@berlin.ccc.de>. + 25 Mar 2002; Thilo Bangert <thilo.bangert@gmx.net> ChangeLog: added qmail runtime dependancy diff --git a/net-mail/ezmlm/ezmlm-0.53.ebuild b/net-mail/ezmlm/ezmlm-0.53.ebuild index a1c3d6619094..d990aaa8727d 100644 --- a/net-mail/ezmlm/ezmlm-0.53.ebuild +++ b/net-mail/ezmlm/ezmlm-0.53.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm/ezmlm-0.53.ebuild,v 1.10 2003/02/13 14:29:29 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm/ezmlm-0.53.ebuild,v 1.11 2003/04/08 01:05:31 liquidx Exp $ S=${WORKDIR}/${P} DESCRIPTION="Simple yet powerful mailing list manager for qmail." @@ -16,6 +16,11 @@ DEPEND=" sys-apps/groff" RDEPEND="net-mail/qmail" +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/ezmlm-0.53-errno.patch +} + src_compile() { cd ${S} mkdir tmp diff --git a/net-mail/ezmlm/files/digest-ezmlm-0.53 b/net-mail/ezmlm/files/digest-ezmlm-0.53 index 5426ec4ec774..31b5411caa6f 100644 --- a/net-mail/ezmlm/files/digest-ezmlm-0.53 +++ b/net-mail/ezmlm/files/digest-ezmlm-0.53 @@ -1 +1,3 @@ +MD5 b82b4c09c356dc91fcbe907a24326b52 /files/ezmlm-0.53-errno.patch 270 +MD5 ea33ab5d62caf49e0e08ff183181835e /ezmlm-0.53.ebuild 1076 MD5 108c632caaa8cdbfd3041e6c449191b2 ezmlm-0.53.tar.gz 62693 diff --git a/net-mail/ezmlm/files/ezmlm-0.53-errno.patch b/net-mail/ezmlm/files/ezmlm-0.53-errno.patch new file mode 100644 index 000000000000..3028e5630f60 --- /dev/null +++ b/net-mail/ezmlm/files/ezmlm-0.53-errno.patch @@ -0,0 +1,9 @@ +diff -urN ezmlm-0.53/error.h ezmlm-0.53-new/error.h +--- ezmlm-0.53/error.h 2003-04-06 07:59:49.000000000 +0200 ++++ ezmlm-0.53-new/error.h 2003-04-06 08:09:25.000000000 +0200 +@@ -1,5 +1,6 @@ + #ifndef ERROR_H + #define ERROR_H ++#include <errno.h> + + extern int errno; |