aboutsummaryrefslogtreecommitdiff
path: root/net/imcom
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-11-09 07:48:19 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-11-09 07:48:19 +0000
commitd11b5ce66c0ead368e34baa0e8e0e3023267bcc4 (patch)
treeac669bef9fbdafeb9e8b789702d6618e1ea89cf2 /net/imcom
parent3e4b179fa7c9f4ce9202b75203902b5b5748e099 (diff)
downloadports-d11b5ce66c0ead368e34baa0e8e0e3023267bcc4.tar.gz
ports-d11b5ce66c0ead368e34baa0e8e0e3023267bcc4.zip
Notes
Diffstat (limited to 'net/imcom')
-rw-r--r--net/imcom/Makefile24
-rw-r--r--net/imcom/distinfo2
-rw-r--r--net/imcom/files/patch-IMCom.py26
-rw-r--r--net/imcom/files/patch-Makefile.in41
-rw-r--r--net/imcom/files/patch-configure20
-rw-r--r--net/imcom/pkg-descr7
-rw-r--r--net/imcom/pkg-plist36
7 files changed, 0 insertions, 156 deletions
diff --git a/net/imcom/Makefile b/net/imcom/Makefile
deleted file mode 100644
index acdcc5803fb7..000000000000
--- a/net/imcom/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# New ports collection makefile for: imcom
-# Date created: Jun 09 2002
-# Whom: Martijn Lina
-#
-# $FreeBSD$
-
-PORTNAME= imcom
-PORTVERSION= 1.34
-CATEGORIES= net
-MASTER_SITES= http://nafai.dyndns.org/files/
-#Main Site Down: http://imcom.floobin.cx/files/
-
-MAINTAINER= martijn@pacno.net
-COMMENT= IMCom is a command-line Jabber client written in Python
-
-BUILD_DEPENDS= ${PYEXPAT}
-RUN_DEPENDS= ${BUILD_DEPENDS}
-
-GNU_CONFIGURE= yes
-USE_PYTHON= yes
-
-MAN1= imcom.1
-
-.include <bsd.port.mk>
diff --git a/net/imcom/distinfo b/net/imcom/distinfo
deleted file mode 100644
index 3ed0afc9ecc7..000000000000
--- a/net/imcom/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (imcom-1.34.tar.gz) = bd491a3ef43a07ecb6cd03c455e29c2e
-SIZE (imcom-1.34.tar.gz) = 282243
diff --git a/net/imcom/files/patch-IMCom.py b/net/imcom/files/patch-IMCom.py
deleted file mode 100644
index 9d5fc4ee63de..000000000000
--- a/net/imcom/files/patch-IMCom.py
+++ /dev/null
@@ -1,26 +0,0 @@
---- IMCom.py.orig Sat Mar 26 00:34:55 2005
-+++ IMCom.py Sat Mar 26 00:36:17 2005
-@@ -618,7 +618,7 @@
-
- def sendPriority(self, priority):
- self.priority = priority
-- tosend = "<presence type='available'>"\
-+ tosend = "<presence>"\
- "<show>"+self.currentStatus+"</show>"\
- "<priority>"+str(priority)+"</priority>"
- if(self.currentStatusReason != None or self.currentStatusReason != ""):
-@@ -640,12 +640,12 @@
- self.currentStatus = "online"
- self.currentStatusReason = reason
- if(reason == None):
-- tosend = "<presence type='available'>"\
-+ tosend = "<presence>"\
- "<show>online</show>"\
- "<priority>"+priority+"</priority>"\
- "</presence>"
- else:
-- tosend = "<presence type='available'>"\
-+ tosend = "<presence>"\
- "<show>online</show><status>"+self.normalize(reason)+"</status>"\
- "<priority>"+priority+"</priority>"\
- "</presence>"
diff --git a/net/imcom/files/patch-Makefile.in b/net/imcom/files/patch-Makefile.in
deleted file mode 100644
index df15ce4564ed..000000000000
--- a/net/imcom/files/patch-Makefile.in
+++ /dev/null
@@ -1,41 +0,0 @@
---- Makefile.in.orig Mon Jul 21 15:34:31 2003
-+++ Makefile.in Mon Jul 21 15:39:57 2003
-@@ -2,7 +2,7 @@
- exec_prefix = @exec_prefix@
- bindir = @bindir@
- datadir = @datadir@
--docdir = @datadir@/imcom/docs
-+docdir = @datadir@/doc/imcom
- mandir = @mandir@
-
- all:
-@@ -13,21 +13,23 @@
-
- install-bin: install-modules
- install -d -m 0755 ${bindir}
-- install -m 0755 imcom ${bindir}
-+ ${BSD_INSTALL_SCRIPT} imcom ${bindir}
-
- install-modules:
- install -d -m 0755 ${datadir}/imcom
- install -d -m 0755 ${datadir}/imcom/modules
- install -m 0644 *.py ${datadir}/imcom
- install -m 0644 modules/*.py ${datadir}/imcom/modules
-- install -m 0755 CLI.py LogHandler.py AccountCreator.py ${datadir}/imcom
-+ ${BSD_INSTALL_SCRIPT} CLI.py LogHandler.py AccountCreator.py ${datadir}/imcom
-
- install-doc:
-- install -d -m 0755 ${docdir}
- install -d -m 0755 ${mandir}/man1
-- install -m 0755 docs/*.html ${docdir}
-- install -m 0755 CONTRIBUTORS LICENSE README README.autostatus TODO WHATSNEW ${docdir}
-- install -m 0755 docs/imcom.1 ${mandir}/man1/imcom.1
-+ ${BSD_INSTALL_MAN} docs/imcom.1 ${mandir}/man1/imcom.1
-+.if !defined(NOPORTDOCS)
-+ install -d -m 0755 ${docdir}
-+ ${BSD_INSTALL_DATA} docs/*.html ${docdir}
-+ ${BSD_INSTALL_DATA} CONTRIBUTORS LICENSE README README.autostatus TODO WHATSNEW ${docdir}
-+.endif
-
-
- uninstall:
diff --git a/net/imcom/files/patch-configure b/net/imcom/files/patch-configure
deleted file mode 100644
index 79e46787b3ab..000000000000
--- a/net/imcom/files/patch-configure
+++ /dev/null
@@ -1,20 +0,0 @@
---- configure.orig Fri Jul 16 15:52:26 2004
-+++ configure Fri Jul 16 15:52:32 2004
-@@ -1277,7 +1277,7 @@
- HAVE_PY_LIB_expat=$ac_cv_py_have_expat;
-
- fi
--if [ $HAVE_PY_LIB_expat == false ]; then
-+if [ $HAVE_PY_LIB_expat = false ]; then
- {
- echo "expat is a required module... aborting.";
- exit
-@@ -1325,7 +1325,7 @@
- HAVE_PY_LIB_codecs=$ac_cv_py_have_codecs;
-
- fi
--if [ $HAVE_PY_LIB_codecs == false ]; then
-+if [ $HAVE_PY_LIB_codecs = false ]; then
- {
- echo "codecs is a required module... aborting.";
- exit
diff --git a/net/imcom/pkg-descr b/net/imcom/pkg-descr
deleted file mode 100644
index fd7dcc6bf895..000000000000
--- a/net/imcom/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-IMCom is a command-line Jabber client written in Python.
-
-Its original goal was to replace mICQ as my instant messenger. To that end it
-looks very similar to mICQ, though the actual command interpreter is a bit
-different. Commands are issued to IMCom in a style similar to IRC.
-
-WWW: http://imcom.floobin.cx/
diff --git a/net/imcom/pkg-plist b/net/imcom/pkg-plist
deleted file mode 100644
index c87f46033e75..000000000000
--- a/net/imcom/pkg-plist
+++ /dev/null
@@ -1,36 +0,0 @@
-bin/imcom
-share/imcom/modules/__init__.py
-share/imcom/modules/awaylogmodule.py
-share/imcom/modules/conferencecolorsmodule.py
-share/imcom/modules/examplemodule.py
-share/imcom/modules/presenceErrorModule.py
-share/imcom/modules/testmodule.py
-share/imcom/AccountCreator.py
-share/imcom/AutoStatus.py
-share/imcom/CICommands.py
-share/imcom/CLI.py
-share/imcom/Colors.py
-share/imcom/IHTTPServer.py
-share/imcom/IMCom.py
-share/imcom/JabberHandler.py
-share/imcom/JabberTags.py
-share/imcom/LogHandler.py
-share/imcom/Preferences.py
-share/imcom/SocketWrapper.py
-share/imcom/VCardTags.py
-%%PORTDOCS%%%%DOCSDIR%%/advanced.html
-%%PORTDOCS%%%%DOCSDIR%%/commands.html
-%%PORTDOCS%%%%DOCSDIR%%/download.html
-%%PORTDOCS%%%%DOCSDIR%%/imcomrc.html
-%%PORTDOCS%%%%DOCSDIR%%/news.html
-%%PORTDOCS%%%%DOCSDIR%%/template.html
-%%PORTDOCS%%%%DOCSDIR%%/whatis.html
-%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTORS
-%%PORTDOCS%%%%DOCSDIR%%/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/README.autostatus
-%%PORTDOCS%%%%DOCSDIR%%/TODO
-%%PORTDOCS%%%%DOCSDIR%%/WHATSNEW
-@dirrm share/imcom/modules
-@dirrm share/imcom
-%%PORTDOCS%%@dirrm %%DOCSDIR%%