mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Convey allows people across the globe to collaboratively draw images while
chatting online. Using pictures in addition to words makes communicating online fun and easy. Convey is an Instant Message (IM) program. You can send an message to a friend, but unlike email, the message instantly appears on your friend's screen if they are online. Otherwise, the message is delivered to your friend when they log onto the Internet. Convey uses the Jabber protocol to send its messages. A protocol consists of the rules by which a computer communicates with another computer. Using Jabber, Convey provides users connections to other popular IM programs, such as AOL Instant Messenger, ICQ, MSN Instant Messenger, and Yahoo! Messenger. WWW: http://convey.sourceforge.net/ PR: 83749 Submitted by: Nicola Vitale <nivit@email.it>
This commit is contained in:
parent
dabc6d3c63
commit
02c00cb102
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140659
11 changed files with 149 additions and 0 deletions
39
net-im/convey/Makefile
Normal file
39
net-im/convey/Makefile
Normal file
|
@ -0,0 +1,39 @@
|
|||
# New ports collection makefile for: convey
|
||||
# Date created: 2005-07-18
|
||||
# Whom: Nicola Vitale <nivit@email.it>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= convey
|
||||
PORTVERSION= 0.3
|
||||
CATEGORIES= net java
|
||||
MASTER_SITES= http://convey.sourceforge.net/downloads/ \
|
||||
http://nivi.interfree.it/tmp/convey.sourceforge.net/
|
||||
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
||||
|
||||
MAINTAINER= nivit@email.it
|
||||
COMMENT= An Instant Message (IM) program using the Jabber protocol
|
||||
|
||||
RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper
|
||||
|
||||
USE_ANT= yes
|
||||
USE_JAVA= yes
|
||||
|
||||
JAVA_VERSION= 1.3+
|
||||
|
||||
MAKE_ARGS= -quiet
|
||||
|
||||
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
||||
FIND_DIRS= lib
|
||||
|
||||
SUB_FILES= convey.sh
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/convey.sh ${PREFIX}/bin/convey
|
||||
cd ${WRKSRC} && ${FIND} ${FIND_DIRS} -type d -exec ${MKDIR} ${DATADIR}/{} \;
|
||||
cd ${WRKSRC} && ${FIND} ${FIND_DIRS} -type f -exec ${INSTALL_DATA} {} ${DATADIR}/{} \;
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
net-im/convey/distinfo
Normal file
2
net-im/convey/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (convey-src-0.3.tar.gz) = 12b34536d6b9652a1e3fe33b710a59e2
|
||||
SIZE (convey-src-0.3.tar.gz) = 810560
|
6
net-im/convey/files/convey.sh.in
Normal file
6
net-im/convey/files/convey.sh.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
cd "%%DATADIR%%"
|
||||
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" -cp "classes:lib/muse-0.72.jar:lib/crimson-1.1.3.jar:lib/jaxp-1.1.jar:lib/jakarta-oro-2.0.4.jar:lib/jdom-b7.jar:lib/convey-0.3.jar" org.convey.ConveyFrame
|
17
net-im/convey/pkg-descr
Normal file
17
net-im/convey/pkg-descr
Normal file
|
@ -0,0 +1,17 @@
|
|||
Convey allows people across the globe to collaboratively draw images while
|
||||
chatting online. Using pictures in addition to words makes communicating online
|
||||
fun and easy.
|
||||
|
||||
Convey is an Instant Message (IM) program. You can send an message to a friend,
|
||||
but unlike email, the message instantly appears on your friend's screen if they
|
||||
are online. Otherwise, the message is delivered to your friend when they log
|
||||
onto the Internet.
|
||||
|
||||
Convey uses the Jabber protocol to send its messages. A protocol consists of
|
||||
the rules by which a computer communicates with another computer.
|
||||
|
||||
Using Jabber, Convey provides users connections to other popular IM programs,
|
||||
such as AOL Instant Messenger, ICQ, MSN Instant Messenger, and Yahoo!
|
||||
Messenger.
|
||||
|
||||
WWW: http://convey.sourceforge.net/
|
10
net-im/convey/pkg-plist
Normal file
10
net-im/convey/pkg-plist
Normal file
|
@ -0,0 +1,10 @@
|
|||
@comment $FreeBSD$
|
||||
bin/convey
|
||||
%%DATADIR%%/lib/convey-0.3.jar
|
||||
%%DATADIR%%/lib/crimson-1.1.3.jar
|
||||
%%DATADIR%%/lib/jakarta-oro-2.0.4.jar
|
||||
%%DATADIR%%/lib/jaxp-1.1.jar
|
||||
%%DATADIR%%/lib/jdom-b7.jar
|
||||
%%DATADIR%%/lib/muse-0.72.jar
|
||||
@dirrm %%DATADIR%%/lib
|
||||
@dirrm %%DATADIR%%
|
|
@ -82,6 +82,7 @@
|
|||
SUBDIR += coda5_server
|
||||
SUBDIR += coda6_client
|
||||
SUBDIR += coda6_server
|
||||
SUBDIR += convey
|
||||
SUBDIR += corkscrew
|
||||
SUBDIR += courier-authlib-ldap
|
||||
SUBDIR += cphone
|
||||
|
|
39
net/convey/Makefile
Normal file
39
net/convey/Makefile
Normal file
|
@ -0,0 +1,39 @@
|
|||
# New ports collection makefile for: convey
|
||||
# Date created: 2005-07-18
|
||||
# Whom: Nicola Vitale <nivit@email.it>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= convey
|
||||
PORTVERSION= 0.3
|
||||
CATEGORIES= net java
|
||||
MASTER_SITES= http://convey.sourceforge.net/downloads/ \
|
||||
http://nivi.interfree.it/tmp/convey.sourceforge.net/
|
||||
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
||||
|
||||
MAINTAINER= nivit@email.it
|
||||
COMMENT= An Instant Message (IM) program using the Jabber protocol
|
||||
|
||||
RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper
|
||||
|
||||
USE_ANT= yes
|
||||
USE_JAVA= yes
|
||||
|
||||
JAVA_VERSION= 1.3+
|
||||
|
||||
MAKE_ARGS= -quiet
|
||||
|
||||
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
||||
FIND_DIRS= lib
|
||||
|
||||
SUB_FILES= convey.sh
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/convey.sh ${PREFIX}/bin/convey
|
||||
cd ${WRKSRC} && ${FIND} ${FIND_DIRS} -type d -exec ${MKDIR} ${DATADIR}/{} \;
|
||||
cd ${WRKSRC} && ${FIND} ${FIND_DIRS} -type f -exec ${INSTALL_DATA} {} ${DATADIR}/{} \;
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
net/convey/distinfo
Normal file
2
net/convey/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (convey-src-0.3.tar.gz) = 12b34536d6b9652a1e3fe33b710a59e2
|
||||
SIZE (convey-src-0.3.tar.gz) = 810560
|
6
net/convey/files/convey.sh.in
Normal file
6
net/convey/files/convey.sh.in
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
cd "%%DATADIR%%"
|
||||
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" -cp "classes:lib/muse-0.72.jar:lib/crimson-1.1.3.jar:lib/jaxp-1.1.jar:lib/jakarta-oro-2.0.4.jar:lib/jdom-b7.jar:lib/convey-0.3.jar" org.convey.ConveyFrame
|
17
net/convey/pkg-descr
Normal file
17
net/convey/pkg-descr
Normal file
|
@ -0,0 +1,17 @@
|
|||
Convey allows people across the globe to collaboratively draw images while
|
||||
chatting online. Using pictures in addition to words makes communicating online
|
||||
fun and easy.
|
||||
|
||||
Convey is an Instant Message (IM) program. You can send an message to a friend,
|
||||
but unlike email, the message instantly appears on your friend's screen if they
|
||||
are online. Otherwise, the message is delivered to your friend when they log
|
||||
onto the Internet.
|
||||
|
||||
Convey uses the Jabber protocol to send its messages. A protocol consists of
|
||||
the rules by which a computer communicates with another computer.
|
||||
|
||||
Using Jabber, Convey provides users connections to other popular IM programs,
|
||||
such as AOL Instant Messenger, ICQ, MSN Instant Messenger, and Yahoo!
|
||||
Messenger.
|
||||
|
||||
WWW: http://convey.sourceforge.net/
|
10
net/convey/pkg-plist
Normal file
10
net/convey/pkg-plist
Normal file
|
@ -0,0 +1,10 @@
|
|||
@comment $FreeBSD$
|
||||
bin/convey
|
||||
%%DATADIR%%/lib/convey-0.3.jar
|
||||
%%DATADIR%%/lib/crimson-1.1.3.jar
|
||||
%%DATADIR%%/lib/jakarta-oro-2.0.4.jar
|
||||
%%DATADIR%%/lib/jaxp-1.1.jar
|
||||
%%DATADIR%%/lib/jdom-b7.jar
|
||||
%%DATADIR%%/lib/muse-0.72.jar
|
||||
@dirrm %%DATADIR%%/lib
|
||||
@dirrm %%DATADIR%%
|
Loading…
Add table
Reference in a new issue