mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
f7c4752310
PR: 20965 Submitted by: Stephane Legrand <stephane.legrand@bigfoot.com>
32 lines
789 B
Makefile
32 lines
789 B
Makefile
# New ports collection makefile for: Jetty
|
|
# Date created: 28 August 2000
|
|
# Whom: Stephane Legrand <stephane.legrand@bigfoot.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jetty
|
|
PORTVERSION= 2.4.6
|
|
CATEGORIES= www java
|
|
MASTER_SITES= http://download.sourceforge.net/jetty/ \
|
|
ftp://jetty.mortbay.com/pub/
|
|
DISTNAME= Jetty-${PORTVERSION}
|
|
|
|
MAINTAINER= stephane.legrand@bigfoot.com
|
|
|
|
RUN_DEPENDS= ${JAVAVM}:${PORTSDIR}/java/javavmwrapper \
|
|
${LOCALBASE}/etc/javavms:${PORTSDIR}/java/jre
|
|
|
|
JAVAVM?= ${LOCALBASE}/bin/javavm
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/java/${PORTNAME}
|
|
@(cd ${WRKSRC} && ${TAR} -c -f - [^src]* ) \
|
|
| (cd ${PREFIX}/share/java/${PORTNAME} && ${TAR} --unlink -x -f -)
|
|
|
|
post-install:
|
|
@${SED} 's|%%PREFIX%%|${PREFIX}|g' ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|