Remove my useless jabber ports (expired 2007-10-20)

2007-10-20 net-im/jabber-conference: Development stalled
2007-10-20 net-im/jabber-jud: development stalled
2007-10-20 net-im/jabber-yahoo: development stalled
This commit is contained in:
Martin Matuska 2007-12-24 23:14:27 +00:00
parent 7828dac949
commit e77df932c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=204463
23 changed files with 3 additions and 458 deletions

3
MOVED
View file

@ -3345,3 +3345,6 @@ x11-wm/ion-3||2007-12-12|Removed by insistence of software author
net/sipp|benchmarks/sipp|2007-12-16|new category
sysutils/xdd|benchmarks/xdd|2007-12-21|Moved to a better category
graphics/digikamimageplugins-doc|graphics/digikam-doc|2007-12-23|Projects merged
net-im/jabber-conference||2007-12-24|Has expired: Development stalled
net-im/jabber-jud||2007-12-24|Has expired: development stalled
net-im/jabber-yahoo||2007-12-24|Has expired: development stalled

View file

@ -44,13 +44,10 @@
SUBDIR += imcom
SUBDIR += iserverd
SUBDIR += jabber
SUBDIR += jabber-conference
SUBDIR += jabber-jud
SUBDIR += jabber-pyaim
SUBDIR += jabber-pyicq
SUBDIR += jabber-pymsn
SUBDIR += jabber-users-agent
SUBDIR += jabber-yahoo
SUBDIR += jabber.el
SUBDIR += jabberd
SUBDIR += jarl

View file

@ -1,55 +0,0 @@
# New ports collection makefile for: jabber-conference
# Date created: 15 Apr 2002
# Whom: Sean Chittenden <seanc@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= conference
PORTVERSION= 0.4.1
PORTREVISION= 2
CATEGORIES= net-im
MASTER_SITES= http://freebsd.unixfreunde.de/sources/
PKGNAMEPREFIX= jabber-
DIST_SUBDIR= jabber
MAINTAINER= mm@FreeBSD.org
COMMENT= Jabber Conferencing module
LIB_DEPENDS= jabberd.1:${PORTSDIR}/net-im/jabber
BROKEN= old jabber API (net-im/jabber switched to c++)
DEPRECATED= Development stalled
EXPIRATION_DATE= 2007-10-20
USE_GMAKE= yes
CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/jabber \
-I${LOCALBASE}/include/pth
MAKE_ARGS+= MCFLAGS="-shared" \
LDFLAGS="-L${LOCALBASE}/lib/pth -L${LOCALBASE}/lib/jabber"
SUB_FILES+= pkg-message README.jabberd14
DOCSDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
.if !defined(NOPORTDOCS)
PKGMESSAGE= ${WRKDIR}/pkg-message
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
CFLAGS+= -fPIC
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/conference.so ${PREFIX}/lib/jabber/
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKDIR}/README.jabberd14 ${DOCSDIR}
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.post.mk>

View file

@ -1,3 +0,0 @@
MD5 (jabber/conference-0.4.1.tar.gz) = 01b825d9f917674f25fdba29255d081b
SHA256 (jabber/conference-0.4.1.tar.gz) = 5efdffbc7c03b9149abf9f89585c91157609a4303076fdec7733f8a4d12a119b
SIZE (jabber/conference-0.4.1.tar.gz) = 9645

View file

@ -1,89 +0,0 @@
The sample configuration file for jabberd14 may be located in:
%%TARGETDIR%%/etc/jabber.xml.sample
Please make necessary changes to your configuration file which may be:
%%TARGETDIR%%/etc/jabber.xml
NOTE: if you want this service to be accessible from other servers,
change any 'conference.localhost' or 'private.localhost' listed below
to a fully qualified domain name! Please make sure that your directives
are _NOT_ in an XML comment: there are many multi-line comments.
Conference can be configured as a private conferencing server (no browse,
all rooms locked up). Add the following to make a private conferencing
server (around line 921 in the sample configuration file):
-------------------------------------------------------------------------------
<service id='private.localhost'>
<load><conference>%%TARGETDIR%%/lib/jabber/conference.so</conference></load>
<conference xmlns="jabber:config:conference">
<private/>
<history>30</history>
<vCard>
<FN>Private Conferences</FN>
<DESC>This service is for private conferencing rooms.</DESC>
<URL>http://foo.bar/</URL>
</vCard>
<notice>
<join> has become available</join>
<leave> has left</leave>
<rename> is now known as </rename>
</notice>
</conference>
</service>
-------------------------------------------------------------------------------
Add this section to the browse area of the jsm service to advertise it
to your users (around line 382 of the sample config file):
-------------------------------------------------------------------------------
<item category="conference" type="text" jid="private.localhost" name="Private Conferencing"/>
-------------------------------------------------------------------------------
Conference can ALSO be configured as a public chatroom server
(add this around line 921 in the sample config file):
(NOTE: don't forget to change the secret and note that this is transmitted
in plain text.)
-------------------------------------------------------------------------------
<service id='conference.localhost'>
<load><conference>%%TARGETDIR%%/lib/jabber/conference.so</conference></load>
<conference xmlns="jabber:config:conference">
<public/>
<vCard>
<FN>Public Chatrooms</FN>
<DESC>This service is for public chatrooms.</DESC>
<URL>http://foo.bar/</URL>
</vCard>
<history>20</history>
<notice>
<join> has become available</join>
<leave> has left</leave>
<rename> is now known as </rename>
</notice>
<room jid="help@conference.localhost">
<name>Assistance Zone</name>
<privacy/>
</room>
<room jid="admin@conference.localhost">
<name>Adminz only</name>
<secret>con0r</secret>
<notice>
<join> just rocks!</join>
<leave> gets lost</leave>
<rename> feels it is more important to be known as </rename>
</notice>
</room>
</conference>
</service>
-------------------------------------------------------------------------------
Add this section to the browse area of the jsm service to advertise it
to your users (around line 246 of the sample configuration file):
-------------------------------------------------------------------------------
<item category="conference" type="text" jid="conference.localhost" name="Public Chatrooms"/>
-------------------------------------------------------------------------------
Be sure to restart your server after reconfiguring.

View file

@ -1,10 +0,0 @@
--- Makefile.orig Wed Feb 21 15:43:41 2007
+++ Makefile Wed Feb 21 15:44:15 2007
@@ -1,7 +1,3 @@
-include ../platform-settings
-
-CFLAGS:=$(CFLAGS) -I../jabberd
-
conference_OBJECTS=conference.o conference_room.o conference_user.o
all: conference

View file

@ -1,2 +0,0 @@
You can find a configuration example in:
%%DOCSDIR%%/README.jabberd14

View file

@ -1,5 +0,0 @@
The Jabber server (jabberd) is a daemon for Jabber clients to connect
and communicate with. Conferencing provides private and public chatrooms.
You can learn more about Jabber at:
WWW: http://www.jabber.org/

View file

@ -1,3 +0,0 @@
lib/jabber/conference.so
%%PORTDOCS%%%%DOCSDIR%%/README.jabberd14
%%PORTDOCS%%@dirrm %%DOCSDIR%%

View file

@ -1,57 +0,0 @@
# New ports collection makefile for: jabber-jud
# Date created: 14 Apr 2002
# Whom: Sean Chittenden <seanc@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= jud
PORTVERSION= 0.5
PORTREVISION= 1
CATEGORIES= net-im
MASTER_SITES= http://jud.jabberstudio.org/ \
http://freebsd.unixfreunde.de/sources/
PKGNAMEPREFIX= jabber-
DIST_SUBDIR= jabber
MAINTAINER= mm@FreeBSD.org
COMMENT= Jabber User Directory module
LIB_DEPENDS= jabberd.1:${PORTSDIR}/net-im/jabber
BROKEN= old jabber API (net-im/jabber switched to c++)
DEPRECATED= development stalled
EXPIRATION_DATE= 2007-10-20
WRKSRC= ${WRKDIR}/${PORTNAME}-ansi-c
USE_GMAKE= yes
CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/jabber \
-I${LOCALBASE}/include/pth
MAKE_ARGS+= MCFLAGS="-shared" \
LDFLAGS="-L${LOCALBASE}/lib/pth -L${LOCALBASE}/lib/jabber"
SUB_FILES+= pkg-message README.jabberd14
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
.if !defined(NOPORTDOCS)
PKGMESSAGE= ${WRKDIR}/pkg-message
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
CFLAGS+= -fPIC
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/jud.so ${PREFIX}/lib/jabber/
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKDIR}/README.jabberd14 ${DOCSDIR}
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.post.mk>

View file

@ -1,3 +0,0 @@
MD5 (jabber/jud-0.5.tar.gz) = 7e59e841a3e43cce647f2dbe0f1a090d
SHA256 (jabber/jud-0.5.tar.gz) = dd833318bf010e3a49087121a5c5aa6d655d5567b4d1baee65c1604aefae62be
SIZE (jabber/jud-0.5.tar.gz) = 5451

View file

@ -1,38 +0,0 @@
The sample configuration file for jabberd14 may be located in:
%%TARGETDIR%%/etc/jabber.xml.sample
Please make all necessary changes to your configuration file which may be:
%%TARGETDIR%%/etc/jabber.xml
To activate JUD for your Jabber server, add the following to your configuration file
(around line 921 in the sample configuration file):
-------------------------------------------------------------------------------
<!--
If you want this service to be accessible from other servers,
change 'jud.localhost' to the server's fully qualified domain name!
-->
<service id="jud">
<host>jud.localhost</host>
<load><jud>%%TARGETDIR%%/lib/jabber/jud.so</jud></load>
<jud xmlns="jabber:config:jud">
<vCard>
<FN>Local Organization's User Directory</FN>
<DESC>This service provides a simple user directory service.</DESC>
<URL>http://foo.bar/</URL>
</vCard>
</jud>
</service>
-------------------------------------------------------------------------------
Add this section to the browse area of the jsm service to advertise it to
your users (around line 382 of the sample config):
-------------------------------------------------------------------------------
<item category="directory" type="user" jid="jud.localhost" name="My Organization's User Directory">
<ns>jabber:iq:search</ns>
<ns>jabber:iq:register</ns>
</item>
-------------------------------------------------------------------------------
Be sure to restart your server after reconfiguring.

View file

@ -1,10 +0,0 @@
--- Makefile.orig Wed Feb 21 15:47:45 2007
+++ Makefile Wed Feb 21 15:47:50 2007
@@ -1,7 +1,3 @@
-include ../platform-settings
-
-CFLAGS=$(CCFLAGS) -I../jabberd
-
jud_OBJECTS=jud.o jud_reg.o jud_search.o
all: jud

View file

@ -1,2 +0,0 @@
You can find a configuration example in:
%%DOCSDIR%%/README.jabberd14

View file

@ -1,5 +0,0 @@
The Jabber server (jabberd) is a daemon for Jabber clients to connect
and communicate with. JUD is allows clients to search for other users.
You can learn more about Jabber at:
WWW: http://www.jabber.org/

View file

@ -1,3 +0,0 @@
lib/jabber/jud.so
%%PORTDOCS%%%%DOCSDIR%%/README.jabberd14
%%PORTDOCS%%@dirrm %%DOCSDIR%%

View file

@ -1,72 +0,0 @@
# New ports collection makefile for: jabber-yahoo
# Date created: 12 Oct 2002
# Whom: Nick Sayer <nsayer@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= yahoo
PORTVERSION= 2.3.2
PORTREVISION= 2
CATEGORIES= net-im
MASTER_SITES= http://files.jabberstudio.org/yahoo-transport-2/
PKGNAMEPREFIX= jabber-
DISTNAME= yahoo-transport-${PORTVERSION}
DIST_SUBDIR= jabber
MAINTAINER= mm@FreeBSD.org
COMMENT= Jabber Yahoo Transport module
LIB_DEPENDS= jabberd.1:${PORTSDIR}/net-im/jabber
BROKEN= old jabber API (net-im/jabber switched to c++)
DEPRECATED= development stalled
EXPIRATION_DATE= 2007-10-20
USE_GNOME= glib12
USE_GMAKE= yes
USE_ICONV= yes
WRKSRC= ${WRKDIR}/yahoo-transport-${PORTVERSION}
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
SUB_FILES+= README.jabberd14 pkg-message
DOCS= CHANGES INSTALL LICENSE README jabber.xml yahoo-jabber.xml yahoo-jcr.xml
.if !defined(NOPORTDOCS)
PKG_MESSAGE= ${WRKDIR}/pkg-message
.endif
.include <bsd.port.pre.mk>
.if exists(${GLIB_CONFIG})
GLIB_CFLAGS!= ${GLIB_CONFIG} --cflags
GLIB_LIBS!= ${GLIB_CONFIG} --libs
.endif
CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/jabber \
-I${LOCALBASE}/include/pth ${GLIB_CFLAGS}
MAKE_ARGS+= MCFLAGS="-shared" \
LDFLAGS="-L${LOCALBASE}/lib/pth -L${LOCALBASE}/lib/jabber" \
LIBS="${GLIB_LIBS}"
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
CFLAGS+= -fPIC
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/yahoo-transport.so ${PREFIX}/lib/jabber/
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for FILE in ${DOCS}
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}/${FILE}
.endfor
@${INSTALL_DATA} ${WRKDIR}/README.jabberd14 ${DOCSDIR}
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.post.mk>

View file

@ -1,3 +0,0 @@
MD5 (jabber/yahoo-transport-2.3.2.tar.gz) = bfe48aa7980a5e27ec929311615e792c
SHA256 (jabber/yahoo-transport-2.3.2.tar.gz) = da295a0cee9c8b8eec6f71165495431a9f6f8ba7f74912ee6ef3a370b6cdcb1d
SIZE (jabber/yahoo-transport-2.3.2.tar.gz) = 117944

View file

@ -1,62 +0,0 @@
The sample configuration file for jabberd14 may be located in:
%%TARGETDIR%%/etc/jabber.xml.sample
Please make all necessary changes to your configuration file which may be:
%%TARGETDIR%%/etc/jabber.xml
NOTE: if you want this service to be accessible from other servers,
change any 'yahoo.localhost' listed below to a fully qualified domain name!
Please make sure that your directives are _NOT_ in an XML comment: there
are many multi-line comments.
To activate the YAHOO transport for your Jabber server,
add the following to your configuration file and adjust to your settings
(around line 921 in the sample configuration file):
-------------------------------------------------------------------------------
<service id="yahoo.localhost">
<load><yahoo_transport>%%TARGETDIR%%/jabber/yahoo-transport.so</yahoo_transport></load>
<config xmlns="jabber:config:yahoo">
<!-- This is the name that will appear when the transport is browsed or
discovered. REQUIRED -->
<vCard>
<NAME>Yahoo! IM Gateway</NAME>
</vCard>
<!-- This is the text that is presented to the user when they register with
transport REQUIRED -->
<instructions>Enter your YAHOO! Messenger Username and Password to registe r with the gateway.</instructions>
<!-- The Yahoo IM server REQUIRED ... should not have to be changed -->
<server>scs.yahoo.com</server>
<!-- The Yahoo IM server's port REQUIRED ... should not have to be changed -->
<port>5050</port>
<!-- The character map. This provides character set translation from UTF-8
to the indicated character map. See the man page for 'iconv' for available
character maps on your platform. CP1252 is the standard Windows character
set -->
<charmap>CP1252</charmap>
<!-- When this element exists, the transport will send new mail notifications as
well as a count of unread messages when the user initially logs in -->
<newmail/>
</config>
</service>
-------------------------------------------------------------------------------
Add this section to the browse area of the jsm to advertise it to
your users (around line 382 of the sample config):
-------------------------------------------------------------------------------
<item category="gateway" type="yahoo" jid="yahoo.localhost" name="Yahoo! Transport">
<ns>jabber:iq:gateway</ns>
<ns>jabber:iq:register</ns>
<ns>jabber:iq:version</ns>
<ns>jabber:iq:time</ns>
</item>
-------------------------------------------------------------------------------
Be sure to restart your server after reconfiguring.

View file

@ -1,14 +0,0 @@
--- Makefile.orig Fri Jun 25 18:33:56 2004
+++ Makefile Wed Feb 21 15:09:38 2007
@@ -1,11 +1,6 @@
# $Id: Makefile,v 1.7 2004/06/25 18:33:56 pcurtis Exp $
-include ../platform-settings
-
-CFLAGS:=$(CFLAGS) -I../jabberd `glib-config --cflags`
-LIBS:=$(LIBS) `glib-config --libs glib`
-
YAHOO_OBJECTS=yahoo-transport.o yahoo-session.o yahoo-phandler.o yahoo.o \
crypt.o gaim-sha.o yahoo-presence.o yahoo-server.o md5.o yahoo-message.o \
yahoo-stats.o yahoo-composing.o yahoo-mail.o yahoo-auth.o

View file

@ -1,2 +0,0 @@
You can find a configuration example in:
%%DOCSDIR%%/README.jabberd14

View file

@ -1,7 +0,0 @@
The Jabber server (jabberd) is a daemon for Jabber clients to connect
and communicate with. Yahoo Transport allows clients to communicate with
users of Yahoo Messenger.
You can learn more about Jabber at http://www.jabber.org/
WWW: http://yahoo-transport-2.jabberstudio.org/

View file

@ -1,10 +0,0 @@
lib/jabber/yahoo-transport.so
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
%%PORTDOCS%%%%DOCSDIR%%/README
%%PORTDOCS%%%%DOCSDIR%%/README.jabberd14
%%PORTDOCS%%%%DOCSDIR%%/jabber.xml
%%PORTDOCS%%%%DOCSDIR%%/yahoo-jabber.xml
%%PORTDOCS%%%%DOCSDIR%%/yahoo-jcr.xml
%%PORTDOCS%%@dirrm %%DOCSDIR%%