diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-09-21 13:17:42 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-09-21 13:17:42 +0000 |
commit | e6720da1c4ab23753c3bbba5f74b82901c7c9df9 (patch) | |
tree | a807bab3f1512ce7f285c03d714596a37558bb06 /net-dialup/diald | |
parent | version bump (diff) | |
download | gentoo-2-e6720da1c4ab23753c3bbba5f74b82901c7c9df9.tar.gz gentoo-2-e6720da1c4ab23753c3bbba5f74b82901c7c9df9.tar.bz2 gentoo-2-e6720da1c4ab23753c3bbba5f74b82901c7c9df9.zip |
Make source code POSIX.1-2001 compliant.
(Portage version: 2.1.1)
Diffstat (limited to 'net-dialup/diald')
-rw-r--r-- | net-dialup/diald/ChangeLog | 7 | ||||
-rw-r--r-- | net-dialup/diald/diald-1.0-r1.ebuild | 4 | ||||
-rw-r--r-- | net-dialup/diald/files/diald-1.0-gentoo.patch | 11 | ||||
-rw-r--r-- | net-dialup/diald/files/diald-1.0-posix.patch | 42 | ||||
-rw-r--r-- | net-dialup/diald/files/digest-diald-1.0-r1 | 2 |
5 files changed, 52 insertions, 14 deletions
diff --git a/net-dialup/diald/ChangeLog b/net-dialup/diald/ChangeLog index 63d4b90fd25f..98eb0878765e 100644 --- a/net-dialup/diald/ChangeLog +++ b/net-dialup/diald/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dialup/diald # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/diald/ChangeLog,v 1.9 2006/03/12 10:05:59 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/diald/ChangeLog,v 1.10 2006/09/21 13:17:42 mrness Exp $ + + 21 Sep 2006; Alin Nastac <mrness@gentoo.org> + -files/diald-1.0-c-files.patch, files/diald-1.0-gentoo.patch, + +files/diald-1.0-posix.patch, diald-1.0-r1.ebuild: + Make source code POSIX.1-2001 compliant. 12 Mar 2006; Alin Nastac <mrness@gentoo.org> diald-1.0-r1.ebuild: Quote strings containing env vars. diff --git a/net-dialup/diald/diald-1.0-r1.ebuild b/net-dialup/diald/diald-1.0-r1.ebuild index 03f1a96c997b..9a35af981096 100644 --- a/net-dialup/diald/diald-1.0-r1.ebuild +++ b/net-dialup/diald/diald-1.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/diald/diald-1.0-r1.ebuild,v 1.10 2006/03/12 10:05:59 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/diald/diald-1.0-r1.ebuild,v 1.11 2006/09/21 13:17:42 mrness Exp $ # You need SLIP in your kernel to run diald. @@ -22,7 +22,7 @@ RDEPEND="net-dialup/ppp" src_unpack() { unpack ${A} - epatch "${FILESDIR}/${P}-c-files.patch" + epatch "${FILESDIR}/${P}-posix.patch" epatch "${FILESDIR}/${P}-gentoo.patch" } diff --git a/net-dialup/diald/files/diald-1.0-gentoo.patch b/net-dialup/diald/files/diald-1.0-gentoo.patch index b4cbaa6138bd..17f9b394cb48 100644 --- a/net-dialup/diald/files/diald-1.0-gentoo.patch +++ b/net-dialup/diald/files/diald-1.0-gentoo.patch @@ -1,14 +1,3 @@ -diff -Nru diald-1.0.orig/diald.h diald-1.0/diald.h ---- diald-1.0.orig/diald.h 2001-06-16 19:01:25.000000000 +0300 -+++ diald-1.0/diald.h 2005-09-19 23:40:47.840664536 +0300 -@@ -11,6 +11,7 @@ - #include <stdio.h> - #include <stdlib.h> - #include <stddef.h> -+# include <time.h> - #if HAVE_UNISTD_H - # include <unistd.h> - #endif diff -Nru diald-1.0.orig/Makefile.in diald-1.0/Makefile.in --- diald-1.0.orig/Makefile.in 2001-06-16 14:16:04.000000000 +0300 +++ diald-1.0/Makefile.in 2005-09-19 23:40:47.855662256 +0300 diff --git a/net-dialup/diald/files/diald-1.0-posix.patch b/net-dialup/diald/files/diald-1.0-posix.patch new file mode 100644 index 000000000000..3ff13ab9bdbc --- /dev/null +++ b/net-dialup/diald/files/diald-1.0-posix.patch @@ -0,0 +1,42 @@ +diff -Nru diald-1.0.orig/diald.h diald-1.0/diald.h +--- diald-1.0.orig/diald.h 2001-06-16 19:01:25.000000000 +0300 ++++ diald-1.0/diald.h 2006-09-21 15:58:57.000000000 +0300 +@@ -31,6 +31,10 @@ + #if HAVE_SYS_TIME_H + # include <sys/time.h> + #endif ++#include <time.h> ++#ifndef CLK_TCK ++# define CLK_TCK (CLOCKS_PER_SEC) ++#endif + #ifdef _POSIX_PRIORITY_SCHEDULING + # include <sched.h> + #endif +diff -Nru diald-1.0.orig/firewall.c diald-1.0/firewall.c +--- diald-1.0.orig/firewall.c 2006-09-21 16:08:18.000000000 +0300 ++++ diald-1.0/firewall.c 2006-09-21 15:49:12.000000000 +0300 +@@ -69,7 +69,7 @@ + #if 0 + mon_syslog(LOG_DEBUG,"slot def: %d %d %x %x %x", + slot->start, slot->end, slot->wday, slot->mday, slot->month); +-#endif 0 ++#endif + if ((slot->start <= ctime) + && (ctime <= slot->end) + && (slot->wday & (1<<ltime->tm_wday)) +diff -Nru diald-1.0.orig/log.c diald-1.0/log.c +--- diald-1.0.orig/log.c 2001-06-16 22:51:39.000000000 +0300 ++++ diald-1.0/log.c 2006-09-21 16:05:11.000000000 +0300 +@@ -19,10 +19,8 @@ + xstrerror(int n) + { + static char buf[30]; +- +- if (n >= 0 && n < sys_nerr) +- return (char *)sys_errlist[n]; +- sprintf(buf, "Error code %d\n", n); ++ if (strerror_r(n, buf, 30) != 0) ++ sprintf(buf, "Error code %d\n", n); + return buf; + } + diff --git a/net-dialup/diald/files/digest-diald-1.0-r1 b/net-dialup/diald/files/digest-diald-1.0-r1 index f37ec4f53c3f..878db57d4da3 100644 --- a/net-dialup/diald/files/digest-diald-1.0-r1 +++ b/net-dialup/diald/files/digest-diald-1.0-r1 @@ -1 +1,3 @@ MD5 84a5aa3b8d1f12dd9e77f2b43b3d159a diald-1.0.tar.gz 199698 +RMD160 e73cb2b027ea5fa96ea9c89057a27600fe3146b9 diald-1.0.tar.gz 199698 +SHA256 dd7630811006ad0f49512de9f2fa6705e50fb475c5bb12e2dde77e198a863bd0 diald-1.0.tar.gz 199698 |