aboutsummaryrefslogtreecommitdiff
path: root/news/inn-stable
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2004-01-19 00:40:32 +0000
committerClement Laforet <clement@FreeBSD.org>2004-01-19 00:40:32 +0000
commitd464c0b090fd1c166a4390950c065cd1fb2d3592 (patch)
tree1702d3b19470e554572ec106a49bd472f34d3f0d /news/inn-stable
parent7bb1b2f8a9c7955650fd200cba3580570c22929d (diff)
downloadports-d464c0b090fd1c166a4390950c065cd1fb2d3592.tar.gz
ports-d464c0b090fd1c166a4390950c065cd1fb2d3592.zip
Notes
Diffstat (limited to 'news/inn-stable')
-rw-r--r--news/inn-stable/Makefile7
-rw-r--r--news/inn-stable/distinfo2
-rw-r--r--news/inn-stable/files/patch-innd::art.c24
3 files changed, 4 insertions, 29 deletions
diff --git a/news/inn-stable/Makefile b/news/inn-stable/Makefile
index 3540415d7dd8..7195689e0882 100644
--- a/news/inn-stable/Makefile
+++ b/news/inn-stable/Makefile
@@ -7,10 +7,9 @@
PORTNAME= inn
PORTVERSION= ${SNAPSHOT}
-PORTREVISION= 1
CATEGORIES= news ipv6
-MASTER_SITES= http://sheepkiller.nerim.net/ports/${PORTNAME}/ \
- http://www.cultdeadsheep.org/FreeBSD/ports/download/distfiles/
+MASTER_SITES= ${MASTER_SITE_LOCAL}
+MASTER_SITE_SUBDIR=clement
PKGNAMESUFFIX= -${BRANCH}
DISTNAME= ${PORTNAME}-${BRANCH:U}-${SNAPSHOT}
@@ -18,7 +17,7 @@ MAINTAINER= clement@FreeBSD.org
COMMENT= InterNetNews -- the Internet meets Netnews
BRANCH= stable
-SNAPSHOT= 20031022
+SNAPSHOT= 20040118
NO_LATEST_LINK= yes
USE_GMAKE= yes
diff --git a/news/inn-stable/distinfo b/news/inn-stable/distinfo
index 100cbc155ab9..51b3ec1d01b6 100644
--- a/news/inn-stable/distinfo
+++ b/news/inn-stable/distinfo
@@ -1 +1 @@
-MD5 (inn-STABLE-20031022.tar.gz) = 1ab0470e2ccc327d75eab774252c456c
+MD5 (inn-STABLE-20040118.tar.gz) = ba62a140b25670602957f20d2f5d23e9
diff --git a/news/inn-stable/files/patch-innd::art.c b/news/inn-stable/files/patch-innd::art.c
deleted file mode 100644
index 7943a772f23e..000000000000
--- a/news/inn-stable/files/patch-innd::art.c
+++ /dev/null
@@ -1,24 +0,0 @@
---- innd/art.c.orig Sat Jul 12 19:40:34 2003
-+++ innd/art.c Thu Jan 8 10:09:34 2004
-@@ -1773,7 +1773,7 @@
- bool
- ARTpost(CHANNEL *cp)
- {
-- char *p, **groups, ControlWord[SMBUF], tmpbuff[32], **hops;
-+ char *p, **groups, ControlWord[SMBUF], **hops, *controlgroup;
- int i, j, *isp, hopcount, oerrno, canpost;
- NEWSGROUP *ngp, **ngptr;
- SITE *sp;
-@@ -2184,9 +2184,10 @@
- * or control. */
- if (IsControl && Accepted && !ToGroup) {
- ControlStore = true;
-- FileGlue(tmpbuff, "control", '.', ControlWord);
-- if ((ngp = NGfind(tmpbuff)) == NULL)
-+ controlgroup = concat("control.", ControlWord, (char *) 0);
-+ if ((ngp = NGfind(controlgroup)) == NULL)
- ngp = NGfind(ARTctl);
-+ free(controlgroup);
- ngp->PostCount = 0;
- ngptr = GroupPointers;
- *ngptr++ = ngp;