mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
29 lines
618 B
Makefile
29 lines
618 B
Makefile
# New ports collection makefile for: JDOM
|
|
# Date created: June 1, 2001
|
|
# Whom: Ernst de Haan <znerd@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jdom
|
|
PORTVERSION= 1.0b8
|
|
CATEGORIES= java
|
|
MASTER_SITES= http://www.jdom.org/dist/binary/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:C/[0-9]*\.[0-9]*//}
|
|
|
|
MAINTAINER= znerd@FreeBSD.org
|
|
|
|
NO_BUILD= yes
|
|
|
|
USE_JAVA= 1.2+
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/[0-9]*\.[0-9]*//}
|
|
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
|
|
TARGET_DIR?= ${PREFIX}/share/java/${PORTNAME}-${PORTVERSION}
|
|
|
|
do-install:
|
|
${MKDIR} ${TARGET_DIR}
|
|
${CP} -r ${WRKSRC}/* ${TARGET_DIR}
|
|
|
|
.include <bsd.port.mk>
|