diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-07 21:14:08 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-07 21:14:08 +0000 |
commit | bacc033e9cde5659c0111f22a646da8a31d4dcca (patch) | |
tree | 7f292073f8d5ceb0ff83715b91505b819fb99d25 /irc | |
parent | d2ff21c87707323a2ab6fc1c36be924ed15c32b6 (diff) | |
download | ports-bacc033e9cde5659c0111f22a646da8a31d4dcca.tar.gz ports-bacc033e9cde5659c0111f22a646da8a31d4dcca.zip |
Notes
Diffstat (limited to 'irc')
-rw-r--r-- | irc/xaric/Makefile | 7 | ||||
-rw-r--r-- | irc/xaric/distinfo | 6 | ||||
-rw-r--r-- | irc/xaric/files/patch-misc.c | 11 | ||||
-rw-r--r-- | irc/xaric/files/patch-numbers.c | 11 | ||||
-rw-r--r-- | irc/xaric/files/patch-xscandir.c | 11 |
5 files changed, 39 insertions, 7 deletions
diff --git a/irc/xaric/Makefile b/irc/xaric/Makefile index 757470172e4c..c5cfa0b1a5b6 100644 --- a/irc/xaric/Makefile +++ b/irc/xaric/Makefile @@ -6,10 +6,9 @@ # PORTNAME= xaric -PORTVERSION= 0.12.1 +PORTVERSION= 0.13.1 CATEGORIES= irc -MASTER_SITES= http://www.xaric.org/downloads/ \ - ftp://ftp.xaric.org/xaric/ +MASTER_SITES= http://rf.cx/code/xaric/releases/ MAINTAINER= ports@FreeBSD.org COMMENT= IRC Client similer to BitchX or ircII @@ -22,7 +21,7 @@ MAN1= xaric.1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xaric ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/doc/xaric.1 ${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/xaric.1 ${MANPREFIX}/man/man1 @${MKDIR} ${DATADIR}/help ${INSTALL_DATA} ${WRKSRC}/help/* ${DATADIR}/help diff --git a/irc/xaric/distinfo b/irc/xaric/distinfo index ef39bca68983..399b2258ddd1 100644 --- a/irc/xaric/distinfo +++ b/irc/xaric/distinfo @@ -1,3 +1,3 @@ -MD5 (xaric-0.12.1.tar.gz) = e388cc67568eec8eb7d53a4c914b3465 -SHA256 (xaric-0.12.1.tar.gz) = 75fd9c30d16c35ea69143f40f6102e0e532c58db6bc6a869a090ab616eba5b78 -SIZE (xaric-0.12.1.tar.gz) = 435998 +MD5 (xaric-0.13.1.tar.gz) = 049954ca4c8b07c5087486146fe84628 +SHA256 (xaric-0.13.1.tar.gz) = 0805619f2dd6e5f07e24de298e2a0d906dca3a2a0834b6165746c5229c42b503 +SIZE (xaric-0.13.1.tar.gz) = 445885 diff --git a/irc/xaric/files/patch-misc.c b/irc/xaric/files/patch-misc.c new file mode 100644 index 000000000000..09195173b8ae --- /dev/null +++ b/irc/xaric/files/patch-misc.c @@ -0,0 +1,11 @@ +--- misc.c.orig Sun Jan 8 07:56:40 2006 ++++ misc.c Sun Jan 8 07:57:39 2006 +@@ -114,7 +114,7 @@ + ltime = (ltime - minutes) / 60; + hours = ltime % 24; + days = (ltime - hours) / 24; +- sprintf(buffer, "%2ldd %2ldh %2ldm %2lds", days, hours, minutes, seconds); ++ sprintf(buffer, "%2dd %2dh %2dm %2ds", days, hours, minutes, seconds); + return (*buffer ? buffer : empty_str); + } + diff --git a/irc/xaric/files/patch-numbers.c b/irc/xaric/files/patch-numbers.c new file mode 100644 index 000000000000..f354a3e485e2 --- /dev/null +++ b/irc/xaric/files/patch-numbers.c @@ -0,0 +1,11 @@ +--- numbers.c.orig Sun Jan 8 07:57:54 2006 ++++ numbers.c Sun Jan 8 07:58:02 2006 +@@ -986,7 +986,7 @@ + + if (!ArgList[1] || !*ArgList[1]) + break; +- sscanf(ArgList[1], "%lu", &tme); ++ sscanf(ArgList[1], "%u", &tme); + this_sucks = ctime(&tme); + this_sucks[strlen(this_sucks) - 1] = '\0'; + diff --git a/irc/xaric/files/patch-xscandir.c b/irc/xaric/files/patch-xscandir.c new file mode 100644 index 000000000000..39fa6ecbac75 --- /dev/null +++ b/irc/xaric/files/patch-xscandir.c @@ -0,0 +1,11 @@ +--- xscandir.c.orig Sun Jan 8 07:58:21 2006 ++++ xscandir.c Sun Jan 8 08:00:46 2006 +@@ -84,7 +84,7 @@ + static int the_longest; + + /* used by scandir to select entries */ +-static int dselect(const struct dirent *d) ++static int dselect(struct dirent *d) + { + int t; + |