summaryrefslogtreecommitdiff
path: root/chat/tik/Makefile
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2001-10-11 14:02:53 +0000
committeragc <agc@pkgsrc.org>2001-10-11 14:02:53 +0000
commit4eb9ae08f143c8c876b2180d2c885162d2cf8127 (patch)
treeb46b41bafb7cfb0e584c33afe61136b59169c764 /chat/tik/Makefile
parentaff20c18cf51735dd0414f6a07e43f088d41b331 (diff)
downloadpkgsrc-4eb9ae08f143c8c876b2180d2c885162d2cf8127.tar.gz
Initial import of tik-0.90 into the NetBSD Packages Collection.
TiK is an open source AOL Instant Messenger client, written in Tcl. It was originally written as an alternative to the AIM Java client. Provided in PR 14129 by Grant Beattie (grant@grunta.com).
Diffstat (limited to 'chat/tik/Makefile')
-rw-r--r--chat/tik/Makefile66
1 files changed, 66 insertions, 0 deletions
diff --git a/chat/tik/Makefile b/chat/tik/Makefile
new file mode 100644
index 00000000000..6f34d3a9e88
--- /dev/null
+++ b/chat/tik/Makefile
@@ -0,0 +1,66 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/10/11 14:02:53 agc Exp $
+#
+
+DISTNAME= tik-0.90
+CATEGORIES= chat
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tik/}
+
+MAINTAINER= grant@grunta.com
+HOMEPAGE= http://tik.sourceforge.net/
+COMMENT= Tcl/Tk AOL Instant Messenger client
+
+DEPENDS+= tk>=8.1:../../x11/tk
+
+WRKSRC= ${WRKDIR}/tik
+
+NO_CONFIGURE= # defined
+NO_BUILD= # defined
+
+TIKDIR= ${PREFIX}/libexec/tik
+
+do-install:
+ ${INSTALL_DATA_DIR} ${TIKDIR}
+ ${INSTALL_SCRIPT} ${WRKSRC}/tik.tcl ${TIKDIR}
+ ${LN} -s ${TIKDIR}/tik.tcl ${PREFIX}/bin/tik
+ ${INSTALL_DATA} \
+ ${WRKSRC}/balloonhelp.tcl \
+ ${WRKSRC}/buddylist.tcl \
+ ${WRKSRC}/buddymgmt.tcl \
+ ${WRKSRC}/callbacks.tcl \
+ ${WRKSRC}/chat.tcl \
+ ${WRKSRC}/configTool.tcl \
+ ${WRKSRC}/configandpkg.tcl \
+ ${WRKSRC}/configdir.tcl \
+ ${WRKSRC}/im.tcl \
+ ${WRKSRC}/info.tcl \
+ ${WRKSRC}/popup.tcl \
+ ${WRKSRC}/prefs.tcl \
+ ${WRKSRC}/protocol.tcl \
+ ${WRKSRC}/proxy.tcl \
+ ${WRKSRC}/sag.tcl \
+ ${WRKSRC}/sflap.tcl \
+ ${WRKSRC}/toc.tcl \
+ ${WRKSRC}/ui.tcl \
+ ${WRKSRC}/util.tcl \
+ ${WRKSRC}/version.tcl \
+ ${WRKSRC}/example.awayrc \
+ ${WRKSRC}/example.pkgrc \
+ ${TIKDIR}
+ cd ${WRKSRC}; \
+ ${PAX} -rw components ${TIKDIR}; \
+ ${PAX} -rw media ${TIKDIR}; \
+ ${PAX} -rw packages ${TIKDIR}; \
+ ${PAX} -rw strs ${TIKDIR}
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tik
+ cd ${WRKSRC}/doc; ${PAX} -rw . ${PREFIX}/share/doc/tik
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/tik
+ ${INSTALL_DATA} \
+ ${WRKSRC}/example.awayrc \
+ ${WRKSRC}/example.pkgrc \
+ ${WRKSRC}/example.tikpre \
+ ${WRKSRC}/example.tikrc \
+ ${WRKSRC}/example.tikstrs \
+ ${PREFIX}/share/examples/tik
+
+.include "../../mk/bsd.pkg.mk"
+