1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

[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:
----------------------------------------------------------------------
This commit is contained in:
Edwin Groothuis 2005-11-23 23:57:18 +00:00
parent d1b8ea31e7
commit 0c5bab8188
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=149225
4 changed files with 16 additions and 31 deletions

View File

@ -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

View File

@ -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

View File

@ -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");
}
}

View File

@ -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>