diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2005-08-21 03:43:17 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2005-08-21 03:43:17 +0000 |
commit | 5719dd7758231c8f350669780f10495fe24a72e9 (patch) | |
tree | 78331c0f6d2b29e0547d3ae79c05f6dba05ffeaa /net-misc/x25_utils | |
parent | arm/hppa/ia64/s390 stable (diff) | |
download | historical-5719dd7758231c8f350669780f10495fe24a72e9.tar.gz historical-5719dd7758231c8f350669780f10495fe24a72e9.tar.bz2 historical-5719dd7758231c8f350669780f10495fe24a72e9.zip |
another small fix. last one I hope. ;)
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'net-misc/x25_utils')
-rw-r--r-- | net-misc/x25_utils/Manifest | 4 | ||||
-rw-r--r-- | net-misc/x25_utils/files/x25_utils-2.3.93.patch | 13 | ||||
-rw-r--r-- | net-misc/x25_utils/x25_utils-2.3.93.ebuild | 7 |
3 files changed, 15 insertions, 9 deletions
diff --git a/net-misc/x25_utils/Manifest b/net-misc/x25_utils/Manifest index 1f1f43c4879c..5df5ab4d1b37 100644 --- a/net-misc/x25_utils/Manifest +++ b/net-misc/x25_utils/Manifest @@ -1,5 +1,5 @@ -MD5 1027328f547750413e5e62d0c2e5a382 x25_utils-2.3.93.ebuild 1152 +MD5 6fdf55064b6188066facfcdfd896eef4 x25_utils-2.3.93.ebuild 1041 MD5 bef3ef4b0172a1ba7bcceebd9169961c ChangeLog 427 MD5 6a99c12d9ee65e9e37afbaf998a322da metadata.xml 435 MD5 23250f180c2838e32cbdaf418936b613 files/digest-x25_utils-2.3.93 68 -MD5 a3b3364bc01e755141961edc9052c96c files/x25_utils-2.3.93.patch 3234 +MD5 1eb12b236d908ced82ac64cc810751ef files/x25_utils-2.3.93.patch 3560 diff --git a/net-misc/x25_utils/files/x25_utils-2.3.93.patch b/net-misc/x25_utils/files/x25_utils-2.3.93.patch index d0c056471f19..83c1cf3033be 100644 --- a/net-misc/x25_utils/files/x25_utils-2.3.93.patch +++ b/net-misc/x25_utils/files/x25_utils-2.3.93.patch @@ -1,3 +1,14 @@ +--- Makefile.orig 2000-10-20 16:14:28.000000000 +0200 ++++ Makefile 2005-08-21 05:39:41.000000000 +0200 +@@ -43,7 +43,7 @@ + SUB = libtelnet telnet telnetd trace route + + all: +- for i in $(SUB); do make -C $$i; done ++ for i in $(SUB); do make -C $$i || exit 1; done + + install: + for i in $(SUB); do make -C $$i install; done --- telnet/commands.c.orig 1996-12-15 23:00:16.000000000 +0100 +++ telnet/commands.c 2005-08-21 04:47:29.000000000 +0200 @@ -55,7 +55,8 @@ @@ -107,7 +118,7 @@ --- telnetd/sys_term.c.orig 2000-12-01 00:22:49.000000000 +0100 +++ telnetd/sys_term.c 2005-08-21 04:54:01.000000000 +0200 @@ -39,6 +39,7 @@ - static char rcsid[] = "$Id: x25_utils-2.3.93.patch,v 1.1 2005/08/21 03:18:45 sbriesen Exp $"; + static char rcsid[] = "$Id: x25_utils-2.3.93.patch,v 1.2 2005/08/21 03:43:17 sbriesen Exp $"; #endif /* not lint */ +#include <stdint.h> diff --git a/net-misc/x25_utils/x25_utils-2.3.93.ebuild b/net-misc/x25_utils/x25_utils-2.3.93.ebuild index 8345b8c5ad8c..82f211e6dbaf 100644 --- a/net-misc/x25_utils/x25_utils-2.3.93.ebuild +++ b/net-misc/x25_utils/x25_utils-2.3.93.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/net-misc/x25_utils/x25_utils-2.3.93.ebuild,v 1.2 2005/08/21 03:33:18 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/x25_utils/x25_utils-2.3.93.ebuild,v 1.3 2005/08/21 03:43:17 sbriesen Exp $ inherit eutils linux-info @@ -22,11 +22,6 @@ pkg_setup() { src_unpack() { unpack ${A} cd "${S}" - - # patch Makefile to catch errors - sed -i -e "s:\(\$\$i\);:\1 || exit 1;:g" Makefile - - # patch telnet/telnetd epatch "${FILESDIR}/${P}.patch" } |