14c61d5c73
Reported by: tmclaugh in IRC (#bsd-sharp at freenode) Submitted by: apeiron in IRC (#bsd-sharp at freenode)
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# New ports collection makefile for: NAnt
|
|
# Date created: 2005-5-21
|
|
# Whom: Christopher Nehren <apeiron+ports@coitusmentis.info>
|
|
#
|
|
# $Id: Makefile,v 1.7 2005/07/10 22:29:48 mezz7 Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nant
|
|
DISTVERSION= 0.85r3
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}-0.85-rc3-src
|
|
|
|
MAINTAINER= apeiron+ports@coitusmentis.info
|
|
COMMENT= A .NET build tool inspired by Ant
|
|
|
|
BUILD_DEPENDS= mono:${PORTSDIR}/lang/mono
|
|
RUN_DEPENDS= mono:${PORTSDIR}/lang/mono
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}
|
|
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= MONO_PATH=${WRKSRC}/lib
|
|
INSTALL_TARGET= install prefix=${PREFIX}
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC}/src ${WRKSRC}/tests -name '*.build' | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|warnaserror="true"|warnaserror="false"|g;'
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@cd ${WRKSRC}/doc; ${FIND} . \
|
|
| ${CPIO} -pdmv -R ${DOCOWN}:${DOCGRP} ${DOCSDIR}
|
|
@${CHMOD} -R ugo-w,ugo+rX ${DOCSDIR}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@cd ${WRKSRC}/examples; ${FIND} . \
|
|
| ${CPIO} -pdmv -R ${DOCOWN}:${DOCGRP} ${EXAMPLESDIR}
|
|
@${CHMOD} -R ugo-w,ugo+rX ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|