Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

7
chat/libirc/DESCR Normal file
View File

@@ -0,0 +1,7 @@
libirc is a C-library for the IRC protocol. It simplifies the task of
writing a bot or client. A very simple example comes with the
package, demonstrating how it is used.
Perfect for those who wish to write bots, irc clients (especially if
you want to integrate IRC with some other Internet software). The
programming language is C.

17
chat/libirc/Makefile Normal file
View File

@@ -0,0 +1,17 @@
# $NetBSD: Makefile,v 1.14 2012/10/03 00:02:39 asau Exp $
#
DISTNAME= libirc-0.2
PKGREVISION= 2
CATEGORIES= chat
MASTER_SITES= # empty
MAINTAINER= pkgsrc-users@NetBSD.org
# HOMEPAGE= http://www.cs.kau.se/~jorgen/software/
COMMENT= C library for the IRC protocol
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
.include "../../devel/glib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

7
chat/libirc/PLIST Normal file
View File

@@ -0,0 +1,7 @@
@comment $NetBSD: PLIST,v 1.2 2004/09/22 08:09:20 jlam Exp $
lib/libirc.la
include/btypes.h
include/cmd.h
include/irc_core.h
include/macros.h
include/ctcp.h

15
chat/libirc/buildlink3.mk Normal file
View File

@@ -0,0 +1,15 @@
# $NetBSD: buildlink3.mk,v 1.7 2009/03/20 19:24:01 joerg Exp $
BUILDLINK_TREE+= libirc
.if !defined(LIBIRC_BUILDLINK3_MK)
LIBIRC_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libirc+= libirc>=0.2nb1
BUILDLINK_ABI_DEPENDS.libirc+= libirc>=0.2nb2
BUILDLINK_PKGSRCDIR.libirc?= ../../chat/libirc
.include "../../devel/glib/buildlink3.mk"
.endif # LIBIRC_BUILDLINK3_MK
BUILDLINK_TREE+= -libirc

7
chat/libirc/distinfo Normal file
View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.3 2005/02/23 15:59:12 agc Exp $
SHA1 (libirc-0.2.tar.gz) = 06114214229d4ed65a5aa774359e2f700cca2277
RMD160 (libirc-0.2.tar.gz) = cdbb707e314615aadcb4ea10bf8ca73aa3d0ca66
Size (libirc-0.2.tar.gz) = 121615 bytes
SHA1 (patch-ab) = a4ad2c1622ec5733f2c2ff9816c4c312d3240e77
SHA1 (patch-ac) = 2b6cc28c382c89b2ed272d0b2e6ea5935eae66fe

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-ab,v 1.1.1.1 2000/12/15 00:36:31 wiz Exp $
--- ../../old/libirc-0.2/src/irc_core.h Wed Jan 5 12:20:56 2000
+++ src/irc_core.h Tue Jan 11 02:04:54 2000
@@ -20,7 +20,9 @@
#define __IRC_CORE_H__
#include <glib.h>
-#include <sys/select.h>
+#include <sys/types.h>
+#include <sys/time.h>
+#include <unistd.h>
#include <btypes.h>
/* Macros and constants */

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ac,v 1.1.1.1 2000/12/15 00:36:31 wiz Exp $
--- ../../old/libirc-0.2/src/tcp.c Sun Jan 2 17:02:43 2000
+++ src/tcp.c Tue Jan 11 02:05:58 2000
@@ -16,6 +16,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>