aboutsummaryrefslogtreecommitdiffstats
path: root/java/junit/Makefile
blob: 531c1607f553d67916c527f62bd289b6159376bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# New ports collection makefile for:    JUnit
# Date created:     Jun 15 1999
# Whom:         OKAZAKI Tetsurou
#
# $FreeBSD$
#

PORTNAME=   junit
PORTVERSION=    3.7
CATEGORIES= java devel
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE} \
        http://www.metaverse.nl/~ernst/
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME=   ${PORTNAME}${PORTVERSION}

MAINTAINER= okazaki@FreeBSD.org

RUN_DEPENDS=    ${LOCALBASE}/bin/javavm:${PORTSDIR}/java/javavmwrapper

JDK_VERSION?=   1.1.8

.if ${JDK_VERSION} == "1.1.8"
RUN_DEPENDS+=   ${LOCALBASE}/share/java/classes/jfc-1.1.1/swing.jar:${PORTSDIR}/java/jfc
.endif

FIND?=      /usr/bin/find

USE_ZIP=    yes
NO_BUILD=   yes

JUNIT_SUBDIR=   ${PORTNAME}-${PORTVERSION}
JUNIT_DESTDIR=  ${PREFIX}/share/java/${JUNIT_SUBDIR}

PLIST_SUB=  JUNIT_SUBDIR=${JUNIT_SUBDIR}
.if !defined(NOPORTDOCS)
DATADIRS=   doc javadoc junit
.endif

do-install:
    ${MKDIR} ${PREFIX}/share/java/classes ${JUNIT_DESTDIR}
    cd ${INSTALL_WRKSRC}; \
        ${INSTALL_DATA} junit.jar ${PREFIX}/share/java/classes; \
        ${INSTALL_DATA} README.html ${JUNIT_DESTDIR}; \
        ${INSTALL_DATA} src.jar ${JUNIT_DESTDIR}
.if defined(DATADIRS)
.for DIR in ${DATADIRS}
    cd ${INSTALL_WRKSRC}; \
        ${FIND} ${DIR} -type d -exec ${MKDIR} ${JUNIT_DESTDIR}/\{} \; ;\
        ${FIND} ${DIR} -type f -exec ${INSTALL_DATA} \{} ${JUNIT_DESTDIR}/\{} \;
.endfor
.endif

.include <bsd.port.mk>