From martijn@sewers-2.demon.nl  Sun Jun  9 05:39:12 2002
Return-Path: <martijn@sewers-2.demon.nl>
Received: from post-21.mail.nl.demon.net (post-21.mail.nl.demon.net [194.159.73.20])
	by hub.freebsd.org (Postfix) with ESMTP id 7CFFE37B401
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  9 Jun 2002 05:39:11 -0700 (PDT)
Received: from [212.238.189.211] (helo=drain.sewers-2.demon.nl)
	by post-21.mail.nl.demon.net with esmtp (Exim 3.36 #1)
	id 17H1yQ-000Ac7-00
	for FreeBSD-gnats-submit@freebsd.org; Sun, 09 Jun 2002 12:39:10 +0000
Received: from localhost (localhost [127.0.0.1])
	by drain.sewers-2.demon.nl (Postfix) with ESMTP id C326A853
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  9 Jun 2002 14:39:55 +0200 (CEST)
Received: by drain.sewers-2.demon.nl (Postfix, from userid 1000)
	id 3F3747E8; Sun,  9 Jun 2002 14:39:50 +0200 (CEST)
Message-Id: <20020609123950.3F3747E8@drain.sewers-2.demon.nl>
Date: Sun,  9 Jun 2002 14:39:50 +0200 (CEST)
From: Martijn Lina <martijn@pacno.net>
Reply-To: Martijn Lina <martijn@pacno.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: New port: IMCom command-line Jabber client, supersedes ports/34567
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         39059
>Category:       ports
>Synopsis:       New port: IMCom command-line Jabber client, supersedes ports/34567
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jun 09 05:40:01 PDT 2002
>Closed-Date:    Sun Jan 19 17:29:52 PST 2003
>Last-Modified:  Sun Jan 19 17:29:52 PST 2003
>Originator:     Martijn Lina
>Release:        FreeBSD 4.5-RELEASE-p3 i386
>Organization:
>Environment:
System: FreeBSD drain.hofnet 4.5-RELEASE-p3 FreeBSD 4.5-RELEASE-p3 #0: Sun May 5 22:42:00 CEST 2002 root@drain.hofnet:/pub/FreeBSD/obj/usr/src/sys/GENERIC i386


>Description:
	
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/

>How-To-Repeat:
	
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	net/imcom
#	net/imcom/Makefile
#	net/imcom/files
#	net/imcom/files/patch-aa
#	net/imcom/pkg-plist
#	net/imcom/pkg-descr
#	net/imcom/distinfo
#	net/imcom/pkg-comment
#
echo c - net/imcom
mkdir -p net/imcom > /dev/null 2>&1
echo x - net/imcom/Makefile
sed 's/^X//' >net/imcom/Makefile << 'END-of-net/imcom/Makefile'
XPORTNAME=    imcom
XPORTVERSION= 0.93
XCATEGORIES= net
XMASTER_SITES=   http://imcom.floobin.cx/files/
X
XUSE_PYTHON= yes
X
Xpre-install:
X	@cd ${WRKSRC} ; \
X	rm -rf docs/CVS; \
X	rm -rf docs/*~
X
X.include <bsd.port.mk>
END-of-net/imcom/Makefile
echo c - net/imcom/files
mkdir -p net/imcom/files > /dev/null 2>&1
echo x - net/imcom/files/patch-aa
sed 's/^X//' >net/imcom/files/patch-aa << 'END-of-net/imcom/files/patch-aa'
X--- Makefile.orig	Wed May 22 02:45:56 2002
X+++ Makefile	Wed May 22 02:47:12 2002
X@@ -1,13 +1,13 @@
X all:
X 
X install:
X-	mkdir -p /usr/local/share/imcom
X-	mkdir -p /usr/local/share/imcom/docs
X-	cp AutoStatus.API CONTRIBUTORS LICENSE README README.autostatus TODO WHATSNEW /usr/local/share/imcom/docs
X-	cp docs/* /usr/local/share/imcom/docs
X-	cp *.py /usr/local/share/imcom
X-	cp imcom /usr/local/bin
X+	mkdir -p ${LOCALBASE}/share/imcom
X+	mkdir -p ${LOCALBASE}/share/doc/imcom
X+	${BSD_INSTALL_DATA} AutoStatus.API CONTRIBUTORS LICENSE README README.autostatus TODO WHATSNEW ${LOCALBASE}/share/doc/imcom
X+	${BSD_INSTALL_DATA} docs/* ${LOCALBASE}/share/doc/imcom
X+	${BSD_INSTALL_SCRIPT} *.py ${LOCALBASE}/share/imcom
X+	${BSD_INSTALL_SCRIPT} imcom ${LOCALBASE}/bin
X 
X uninstall:
X-	rm -rf /usr/local/share/imcom
X-	rm -f /usr/local/bin/imcom
X+	rm -rf ${LOCALBASE}/share/imcom
X+	rm -rf ${LOCALBASE}/share/doc/imcom
X+	rm -f ${LOCALBASE}/bin/imcom
END-of-net/imcom/files/patch-aa
echo x - net/imcom/pkg-plist
sed 's/^X//' >net/imcom/pkg-plist << 'END-of-net/imcom/pkg-plist'
Xbin/imcom
Xshare/doc/imcom/AutoStatus.API
Xshare/doc/imcom/CONTRIBUTORS
Xshare/doc/imcom/LICENSE
Xshare/doc/imcom/README
Xshare/doc/imcom/README.autostatus
Xshare/doc/imcom/TODO
Xshare/doc/imcom/WHATSNEW
Xshare/doc/imcom/CHANGELOG
Xshare/doc/imcom/advanced.html
Xshare/doc/imcom/commands.html
Xshare/doc/imcom/download.html
Xshare/doc/imcom/imcomrc.html
Xshare/doc/imcom/index.html
Xshare/doc/imcom/news.html
Xshare/doc/imcom/rosterlist.jpg
Xshare/doc/imcom/statuschange.jpg
Xshare/doc/imcom/style.css
Xshare/doc/imcom/template.html
Xshare/doc/imcom/whatis.html
Xshare/imcom/AccountCreator.py
Xshare/imcom/SocketWrapper.py
Xshare/imcom/Preferences.py
Xshare/imcom/LogHandler.py
Xshare/imcom/JabberTags.py
Xshare/imcom/JabberHandler.py
Xshare/imcom/IMCom.py
Xshare/imcom/IHTTPServer.py
Xshare/imcom/Colors.py
Xshare/imcom/CLI.py
Xshare/imcom/CICommands.py
Xshare/imcom/AutoStatus.py
Xshare/imcom/VCardTags.py
X@dirrm share/doc/imcom
X@dirrm share/imcom
END-of-net/imcom/pkg-plist
echo x - net/imcom/pkg-descr
sed 's/^X//' >net/imcom/pkg-descr << 'END-of-net/imcom/pkg-descr'
XIMCom is a command-line Jabber client written in Python.
X
XIts original goal was to replace mICQ as my instant messenger. To that end it
Xlooks very similar to mICQ, though the actual command interpreter is a bit
Xdifferent. Commands are issued to IMCom in a style similar to IRC.
X
XWWW: http://imcom.floobin.cx/
END-of-net/imcom/pkg-descr
echo x - net/imcom/distinfo
sed 's/^X//' >net/imcom/distinfo << 'END-of-net/imcom/distinfo'
XMD5 (imcom-0.93.tar.gz) = 0e63d044c48490cb84a326a64b2760c9
END-of-net/imcom/distinfo
echo x - net/imcom/pkg-comment
sed 's/^X//' >net/imcom/pkg-comment << 'END-of-net/imcom/pkg-comment'
XIMCom is a command-line Jabber client written in Python.
END-of-net/imcom/pkg-comment
exit

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: edwin 
State-Changed-When: Sun Jan 19 17:29:41 PST 2003 
State-Changed-Why:  
Commited, thanks! 
(next time please run portlint) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=39059 
>Unformatted:
