5a52a08234
java/openjdk6 support was removed from Mk/bsd.java.mk (r512662) and java/openjdk6 and java/openjdk6-jre were removed from the ports tree (r512663). Now this patch completely removes remaining stuff from the ports tree. PR: 241953 (exp-run) Reviewed by: glewis Approved by: portmgr (antoine) Differential Revision: https://reviews.freebsd.org/D22342
31 lines
798 B
Makefile
31 lines
798 B
Makefile
# Created by: Nicola Vitale <nivit@email.it>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= convey
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= net-im java
|
|
MASTER_SITES= http://convey.sourceforge.net/downloads/ \
|
|
http://nivi.interfree.it/tmp/convey.sourceforge.net/
|
|
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Instant Message (IM) program using the Jabber protocol
|
|
|
|
USE_ANT= yes
|
|
USE_JAVA= yes
|
|
|
|
MAKE_ARGS= -quiet
|
|
|
|
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
|
FIND_DIRS= lib
|
|
|
|
SUB_FILES= convey.sh
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/convey.sh ${STAGEDIR}${PREFIX}/bin/convey
|
|
cd ${WRKSRC} && ${FIND} ${FIND_DIRS} -type d -exec ${MKDIR} ${STAGEDIR}${DATADIR}/{} \;
|
|
cd ${WRKSRC} && ${FIND} ${FIND_DIRS} -type f -exec ${INSTALL_DATA} {} ${STAGEDIR}${DATADIR}/{} \;
|
|
|
|
.include <bsd.port.mk>
|