diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-11-23 23:57:18 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-11-23 23:57:18 +0000 |
commit | 0c5bab81889c315f9a4a07f92b3053919ee51eb5 (patch) | |
tree | ba06d7ecff48533b44c97333576a9fceee0d63e5 /comms/birda | |
parent | d1b8ea31e763521e1a127a468b5e12b2e6180627 (diff) | |
download | ports-0c5bab81889c315f9a4a07f92b3053919ee51eb5.tar.gz ports-0c5bab81889c315f9a4a07f92b3053919ee51eb5.zip |
[patch] comms/birda unexpire
PR 88049 marked comms/birda as deprecated because the old
distfile is no longer available on NetBSD's ftp server.
This is because they now ship birda-1.1
This patch updates the port to 1.1, unbreaking birda. I
use this port routinely and would hate to see it gone.
I would be happy to be maintainer of birda if current
maintainer has no interest maintaining it.
PR: ports/88968
Submitted by: Matthew Luckie <mjl@luckie.org.nz>
---------------------------------------------------------------------- CVS:
Enter Log. Lines beginning with `CVS:' are removed automatically
distinfo CVS: Added Files: CVS: files/patch-lib-Makefile CVS:
Removed Files: CVS: files/patch-iassrv.c CVS:
----------------------------------------------------------------------
Notes
Notes:
svn path=/head/; revision=149225
Diffstat (limited to 'comms/birda')
-rw-r--r-- | comms/birda/Makefile | 11 | ||||
-rw-r--r-- | comms/birda/distinfo | 5 | ||||
-rw-r--r-- | comms/birda/files/patch-iassrv.c | 22 | ||||
-rw-r--r-- | comms/birda/files/patch-lib-Makefile | 9 |
4 files changed, 16 insertions, 31 deletions
diff --git a/comms/birda/Makefile b/comms/birda/Makefile index 7ac9727a92df..c2d04ddeac93 100644 --- a/comms/birda/Makefile +++ b/comms/birda/Makefile @@ -6,17 +6,14 @@ # PORTNAME= birda -PORTVERSION= 1.00 -PORTREVISION= 2 +PORTVERSION= 1.3 CATEGORIES= comms -MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/packages/distfiles/ +MASTER_SITES= ftp://ftp.augustsson.net/pub/netbsd/ \ + ftp://ftp.netbsd.org/pub/NetBSD/packages/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mjl@luckie.org.nz COMMENT= Bohlin's IrDA utilities, ported from NetBSD's pkgsrc -DEPRECATED= "mastersite disappeared, no longer maintained by author" -EXPIRATION_DATE= 2005-12-31 - MAN1= ircomm.1 irobex.1 irs.1 \ mkobexcard.1 mkobexdate.1 mkobexmemo.1 mkobexpdb.1 \ mkobextel.1 mkobextodo.1 diff --git a/comms/birda/distinfo b/comms/birda/distinfo index cf90e8c71727..886c6a9f2c41 100644 --- a/comms/birda/distinfo +++ b/comms/birda/distinfo @@ -1,2 +1,3 @@ -MD5 (birda-1.00.tar.gz) = 0f847c3bbeadb388bdb9bc438d2dcc6b -SIZE (birda-1.00.tar.gz) = 56074 +MD5 (birda-1.3.tar.gz) = da9d3a9859fbcf41d3eece2ecdb68c3c +SHA256 (birda-1.3.tar.gz) = 168ed16ad3acc3dce4b2e8743f7dfa6c4cf7203c18926e0931e4b2614e89c833 +SIZE (birda-1.3.tar.gz) = 57848 diff --git a/comms/birda/files/patch-iassrv.c b/comms/birda/files/patch-iassrv.c deleted file mode 100644 index 185394fe4571..000000000000 --- a/comms/birda/files/patch-iassrv.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/iassrv.c.orig Sun Dec 16 19:22:20 2001 -+++ src/iassrv.c Wed Jul 16 14:08:55 2003 -@@ -281,6 +281,7 @@ - - static void status(Connection* con, int event, void* buf, int len) - { -+ int flags; - IASConnection* ic=(IASConnection*)con->handle; - - if(event==CONN_CLOSED) { -@@ -300,9 +301,10 @@ - - if(ic->outBuf) freeMem(ic->outBuf); - if(ic->inBuf) freeMem(ic->inBuf); -+ flags = ic->ias->ias.debug&IAS_DEBUG_INFO; - freeMem(ic); - connClose(con); -- if(ic->ias->ias.debug&IAS_DEBUG_INFO) log("ias closed\n"); -+ if(flags) log("ias closed\n"); - } - } - diff --git a/comms/birda/files/patch-lib-Makefile b/comms/birda/files/patch-lib-Makefile new file mode 100644 index 000000000000..5f73b0195153 --- /dev/null +++ b/comms/birda/files/patch-lib-Makefile @@ -0,0 +1,9 @@ +--- lib/Makefile.orig Mon Nov 14 10:43:07 2005 ++++ lib/Makefile Mon Nov 14 10:42:14 2005 +@@ -9,4 +9,6 @@ + NOPIC= yes + MKLINKLIB= no + ++install: ++ + .include <bsd.lib.mk> |