xicq, X11 icq client

This commit is contained in:
form 1998-07-01 03:34:49 +00:00
parent bacdb8c3b1
commit 2f05a14c66
10 changed files with 119 additions and 0 deletions

29
net/xicq/Makefile Normal file
View File

@ -0,0 +1,29 @@
# New ports collection makefile for: xicq
# Version required: 23 June 1998
# Date created: 30 June 1998
# Whom: form
#
# $OpenBSD: Makefile,v 1.1.1.1 1998/07/01 03:34:49 form Exp $
# FreeBSD: Makefile,v 1.1.1.1 1998/06/29 18:39:26 scrappy Exp
#
DISTNAME= xicq-062398-snapshot
PKGNAME= xicq-062398
CATEGORIES= net
MASTER_SITES= http://www.xtrophy.dk/xicq/
EXTRACT_SUFX= .tar.gz
MAINTAINER= form@vs.itam.nsc.ru
WRKSRC= ${WRKDIR}/xicq-062398-snapshot
USE_GMAKE= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/xicq ${PREFIX}/bin
${MKDIR} ${PREFIX}/share/examples/xicq
.for file in contact config
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/examples/xicq
.endfor
.include <bsd.port.mk>

1
net/xicq/files/md5 Normal file
View File

@ -0,0 +1 @@
MD5 (xicq-062398-snapshot.tar.gz) = 9bb5fb68ba7fb845166d80593ab2271f

21
net/xicq/patches/patch-aa Normal file
View File

@ -0,0 +1,21 @@
--- Makefile.orig Mon Jun 29 13:23:27 1998
+++ Makefile Mon Jun 29 13:24:12 1998
@@ -1,12 +1,12 @@
all:
- @make -C src/libXicq all
- @make -C src/xicq all install
+ @${MAKE} -C src/libXicq all
+ @${MAKE} -C src/xicq all install
dep:
- @make -C src/libXicq dep
- @make -C src/xicq dep
+ @${MAKE} -C src/libXicq dep
+ @${MAKE} -C src/xicq dep
clean:
- @make -C src/libXicq clean
- @make -C src/xicq clean
+ @${MAKE} -C src/libXicq clean
+ @${MAKE} -C src/xicq clean

18
net/xicq/patches/patch-ab Normal file
View File

@ -0,0 +1,18 @@
--- src/libXicq/Makefile.orig Mon Jun 29 13:57:08 1998
+++ src/libXicq/Makefile Mon Jun 29 13:57:28 1998
@@ -1,6 +1,6 @@
CC = g++
SHELL = /bin/sh
-INCLUDE = -I.
+INCLUDE = -I. -I/usr/include/g++
CFLAGS = -g -Wall $(INCLUDE)
CXXFLAGS= -g -Wall $(INCLUDE)
@@ -15,6 +15,7 @@
all: dep $(OBJECTS)
ar rc libXicq.a $(OBJECTS)
+ ranlib libXicq.a
clean:
rm -f *~ *.a *.o

10
net/xicq/patches/patch-ac Normal file
View File

@ -0,0 +1,10 @@
--- src/xicq/Makefile.orig Mon Jun 29 13:42:32 1998
+++ src/xicq/Makefile Mon Jun 29 13:42:44 1998
@@ -1,6 +1,6 @@
CC = g++
SHELL = /bin/sh
-INCLUDE = -I. -I../libXicq
+INCLUDE = -I. -I../libXicq -I/usr/include/g++
CXXFLAGS= -g -Wall $(INCLUDE)
CFLAGS = -g -Wall $(INCLUDE)
LIBDIR = -L../libXicq

19
net/xicq/patches/patch-ad Normal file
View File

@ -0,0 +1,19 @@
--- src/libXicq/packets.h.orig Mon Jun 29 13:43:35 1998
+++ src/libXicq/packets.h Mon Jun 29 13:43:51 1998
@@ -9,7 +9,9 @@
#ifndef _PACKETS_H
#define _PACKETS_H
-
+#if defined(__FreeBSD__) || defined(__OpenBSD__)
+# include <sys/types.h>
+#endif
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -34,4 +36,4 @@
ICQ_PACKET packets_sendTextCode(char *textCode, unsigned short int X1);
-#endif
+#endif

13
net/xicq/patches/patch-ae Normal file
View File

@ -0,0 +1,13 @@
--- src/libXicq/contact.h.orig Mon Jun 29 13:45:14 1998
+++ src/libXicq/contact.h Mon Jun 29 13:45:30 1998
@@ -9,7 +9,9 @@
#ifndef _CONTACT_H
#define _CONTACT_H
-
+#if defined(__FreeBSD__) || defined(__OpenBSD__)
+# include <sys/types.h>
+#endif
#include <iostream.h>
#include <fstream.h>
#include <stdio.h>

1
net/xicq/pkg/COMMENT Normal file
View File

@ -0,0 +1 @@
Xtropy's ICQ Client

4
net/xicq/pkg/DESCR Normal file
View File

@ -0,0 +1,4 @@
Xtropy's ICQ Client
- http://www.xtrophy.dk/xicq

3
net/xicq/pkg/PLIST Normal file
View File

@ -0,0 +1,3 @@
bin/xicq
share/examples/xicq/contact
share/examples/xicq/config