summaryrefslogtreecommitdiff
path: root/net/imcom/files
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-01-20 01:29:20 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-01-20 01:29:20 +0000
commitbc82397672e7bd7969a9be7faade1731a58df8f1 (patch)
treebbfd118d1087531c7fa00a9994a1e2a972a81c3b /net/imcom/files
parentFix two long-standing bugs where scrollkeeper would overwrite the (diff)
New port: IMCom command-line Jabber client
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. PR: ports/39059 Submitted by: Martijn Lina <martijn@pacno.net>
Notes
Notes: svn path=/head/; revision=73582
Diffstat (limited to 'net/imcom/files')
-rw-r--r--net/imcom/files/patch-aa25
1 files changed, 25 insertions, 0 deletions
diff --git a/net/imcom/files/patch-aa b/net/imcom/files/patch-aa
new file mode 100644
index 000000000000..7dfdf1d2cfa1
--- /dev/null
+++ b/net/imcom/files/patch-aa
@@ -0,0 +1,25 @@
+--- Makefile.orig Wed May 22 02:45:56 2002
++++ Makefile Wed May 22 02:47:12 2002
+@@ -1,13 +1,13 @@
+ all:
+
+ install:
+- mkdir -p /usr/local/share/imcom
+- mkdir -p /usr/local/share/imcom/docs
+- cp AutoStatus.API CONTRIBUTORS LICENSE README README.autostatus TODO WHATSNEW /usr/local/share/imcom/docs
+- cp docs/* /usr/local/share/imcom/docs
+- cp *.py /usr/local/share/imcom
+- cp imcom /usr/local/bin
++ mkdir -p ${LOCALBASE}/share/imcom
++ mkdir -p ${LOCALBASE}/share/doc/imcom
++ ${BSD_INSTALL_DATA} AutoStatus.API CONTRIBUTORS LICENSE README README.autostatus TODO WHATSNEW ${LOCALBASE}/share/doc/imcom
++ ${BSD_INSTALL_DATA} docs/* ${LOCALBASE}/share/doc/imcom
++ ${BSD_INSTALL_SCRIPT} *.py ${LOCALBASE}/share/imcom
++ ${BSD_INSTALL_SCRIPT} imcom ${LOCALBASE}/bin
+
+ uninstall:
+- rm -rf /usr/local/share/imcom
+- rm -f /usr/local/bin/imcom
++ rm -rf ${LOCALBASE}/share/imcom
++ rm -rf ${LOCALBASE}/share/doc/imcom
++ rm -f ${LOCALBASE}/bin/imcom