mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
ce136ee593
It uses only JavaScript and HTML on the client-side. Currently it supports basic jabber instant messaging, roster management and muc-based groupchats. JWChat is an advanced instant messenger (IM) just like AIM, MSN Messenger, Yahoo! Messenger or ICQ. This means you can manage your contacts, chat with other users directly or join a groupchat room for collaborative communication. Unlike other IMs you can use this with your web browser only without having to install any additional software at all. PR: ports/82609 Submitted by: Lars Eggert <lars.eggert@gmx.net>
35 lines
727 B
Makefile
35 lines
727 B
Makefile
# New ports collection makefile for: jwchat
|
|
# Date created: June 24 2005
|
|
# Whom: Lars Eggert <lars.eggert@gmx.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jwchat
|
|
PORTVERSION= 1.0.b1
|
|
CATEGORIES= www net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S,.b,beta,}
|
|
|
|
MAINTAINER= lars.eggert@gmx.net
|
|
COMMENT= Full featured, web-based Jabber client
|
|
|
|
USE_APACHE= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_SUB+= WWW_ROOT=www
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= WWW_ROOT=www PORTNAME=${PORTNAME}
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/www
|
|
${CP} -R ${WRKSRC} ${PREFIX}/www/${PORTNAME}
|
|
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/www/${PORTNAME}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|