aboutsummaryrefslogtreecommitdiffstats
path: root/devel/cxxtest/Makefile
blob: dbd8b83f8e245f6a729825d37a3b54328bfa9552 (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
# New ports collection makefile for:   cxxtest
# Date created:        14 August 2003
# Whom:                andrew morton
#
# $FreeBSD$
#

PORTNAME=   cxxtest
PORTVERSION=    3.10.1
CATEGORIES= devel
MASTER_SITES=   SF

MAINTAINER= drewish@katherinehouse.com
COMMENT=    Simple and powerful JUnit/CppUnit/xUnit-like framework for C++

WRKSRC=     ${WRKDIR}/${PORTNAME}
NO_BUILD=   yes
USE_PERL5_RUN=  yes
USE_GMAKE=  yes

DOCS=       README TODO docs/*.html docs/*.png
EXAMPLES=   sample/*.cpp sample/*.h sample/*.tpl sample/Construct \
        sample/Makefile.unix sample/gui/GreenYellowRed.h

do-install:
# scripts
    @${MKDIR} ${PREFIX}/include/cxxtest
    ${INSTALL_DATA} ${WRKSRC}/cxxtest/* ${PREFIX}/include/cxxtest/
    ${INSTALL_SCRIPT} ${WRKSRC}/cxxtestgen.pl ${PREFIX}/bin/
    ${INSTALL_SCRIPT} ${WRKSRC}/cxxtestgen.py ${PREFIX}/bin/
# docs and examples (minus the win ddk stuff)
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
    @${ECHO_MSG} "* Documentation has been installed in ${DOCSDIR}"
.endif
    @${MKDIR} ${EXAMPLESDIR}
    cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
    @${ECHO_MSG} "* Samples have been installed in ${EXAMPLESDIR}"
    @${ECHO_MSG} "* The CxxTest scripts have been installed into ${PREFIX}/bin/."
    @${ECHO_MSG} "* The include files are in ${PREFIX}/include/cxxtest/"
    @${ECHO_MSG} "* Beware that the sample makefiles aren't compatible with FreeBSD's make,"
    @${ECHO_MSG} "* use ${GMAKE} instead."
    @${ECHO_MSG} "* The obvious reminder: don't forget to add ${PREFIX}/include to your include path."

.include <bsd.port.mk>