mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add irc-transport 0.1b-1.40, IRC-Transport for Jabber server.
PR: 25088 Submitted by: Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
This commit is contained in:
parent
08598eeb83
commit
7b3558e834
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40633
7 changed files with 66 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
SUBDIR += ezbounce
|
||||
SUBDIR += infobot
|
||||
SUBDIR += irc
|
||||
SUBDIR += irc-transport
|
||||
SUBDIR += ircII
|
||||
SUBDIR += ircatlite
|
||||
SUBDIR += ircd-hybrid
|
||||
|
|
37
irc/irc-transport/Makefile
Normal file
37
irc/irc-transport/Makefile
Normal file
|
@ -0,0 +1,37 @@
|
|||
# New ports collection makefile for: irc-transport
|
||||
# Date created: 12 December 2000
|
||||
# Whom: Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
|
||||
PORTNAME= irc-transport
|
||||
PORTVERSION= 0.1b-1.40
|
||||
CATEGORIES= irc
|
||||
MASTER_SITES= http://download.jabber.org/dists/1.4/final/
|
||||
DISTFILES= ${PORTNAME}-${PORTVERSION}.linux${EXTRACT_SUFX}
|
||||
|
||||
MAINTAINER= leeym@cae.ce.ntu.edu.tw
|
||||
|
||||
BUILD_DEPENDS= ${NONEXISTENT}:${JABBER_PORT}:configure
|
||||
RUN_DEPENDS= jabberd:${JABBER_PORT}
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-jabberd=${JABBER_WRKSRC}
|
||||
JABBER_PORT= ${PORTSDIR}/net/jabber
|
||||
JABBER_WRKSRC!= cd ${JABBER_PORT} && ${MAKE} -V WRKSRC
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${PREFIX}/lib/jabber/${PORTNAME}
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/src/irc_transport.so ${PREFIX}/lib/jabber/${PORTNAME}
|
||||
@${ECHO} ""
|
||||
@${ECHO} "============================================================================="
|
||||
@${ECHO} "Please read ${WRKSRC}/README first"
|
||||
@${ECHO} "and add \"./${PORTNAME}/irc_transport.so\" ${PREFIX}/etc/jabber.xml"
|
||||
@${ECHO} "then restart jabberd to enable ${PORTNAME}"
|
||||
@${ECHO} "============================================================================="
|
||||
@${ECHO} ""
|
||||
|
||||
.include <bsd.port.post.mk>
|
1
irc/irc-transport/distinfo
Normal file
1
irc/irc-transport/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (irc-transport-0.1b-1.40.linux.tar.gz) = 5ccf1bb828e3d813380f100e4d11f7f6
|
19
irc/irc-transport/files/patch-src::Makefile.in
Normal file
19
irc/irc-transport/files/patch-src::Makefile.in
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- src/Makefile.in.orig Thu Feb 8 02:31:02 2001
|
||||
+++ src/Makefile.in Mon Feb 12 09:32:49 2001
|
||||
@@ -31,6 +31,7 @@
|
||||
mandir = @mandir@
|
||||
includedir = @includedir@
|
||||
oldincludedir = /usr/include
|
||||
+localincludedir = /usr/local/include
|
||||
|
||||
DESTDIR =
|
||||
|
||||
@@ -72,7 +73,7 @@
|
||||
VERSION = @VERSION@
|
||||
|
||||
CFLAGS = -g -fPIC -shared
|
||||
-INCLUDES = -I$(JABBERD_INC) -I$(top_builddir)/include
|
||||
+INCLUDES = -I$(JABBERD_INC) -I$(top_builddir)/include -I$(oldincludedir) -I$(localincludedir)
|
||||
bin_PROGRAMS = irc_transport.so
|
||||
|
||||
irc_transport_so_SOURCES = util.c init.c irc_in.c irc_out.c
|
1
irc/irc-transport/pkg-comment
Normal file
1
irc/irc-transport/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
IRC-Transport for Jabber server
|
5
irc/irc-transport/pkg-descr
Normal file
5
irc/irc-transport/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
IRC-Transport allows Jabber users to communicate with IRC
|
||||
servers and IRC users, by bridging the gap between the two networks
|
||||
|
||||
--
|
||||
Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
|
2
irc/irc-transport/pkg-plist
Normal file
2
irc/irc-transport/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
lib/jabber/irc-transport/irc_transport.so
|
||||
@dirrm lib/jabber/irc-transport
|
Loading…
Add table
Reference in a new issue