1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/lang/boo/Makefile
Romain Tartière e62990bc20 Hello Mono 2.10!
Main updates
------------
devel/mono-tools                2.6.2 -> 2.10
lang/mono                       2.6.7 -> 2.10.2
lang/mono-basic                 2.6.2 -> 2.10.2
www/mod_mono                    2.6.3 -> 2.10
www/xsp                         2.6.5 -> 2.10.2
x11-toolkits/libgdiplus         2.6.7 -> 2.10

Other updates
-------------
deskutils/tomboy                1.4.2 -> 1.6.1
devel/mono-addins               0.5 -> 0.6.1
devel/monodevelop               2.4 -> 2.4.2
graphics/f-spot                 0.8.0 -> 0.8.2
print/pdfmod                    0.9.0 -> 0.9.1
x11-toolkits/gnome-sharp20      2.24.1 -> 2.24.2

Ports marked BROKEN
-------------------
multimedia/banshee
multimedia/moonlight

PR:		ports/155948
Submitted by:	me
2011-06-12 19:06:25 +00:00

65 lines
1.9 KiB
Makefile

# New ports collection makefile for: Boo
# Date created: June 17, 2005
# Whom: Christopher Nehren <apeiron@coitusmentis.info>
#
# $FreeBSD$
#
PORTNAME= boo
PORTVERSION= 0.9.4.9
CATEGORIES= lang
MASTER_SITES= http://dist.codehaus.org/boo/distributions/
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
MAINTAINER= mono@FreeBSD.org
COMMENT= A CLI-targeted programming language similar to Python
PATCH_DEPENDS= iconv:${PORTSDIR}/converters/libiconv
BUILD_DEPENDS= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info
RUN_DEPENDS= mono:${PORTSDIR}/lang/mono \
${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info
WRKSRC= ${WRKDIR}
USE_GNOME= gtksourceview
USE_NANT= yes
USE_ZIP= yes
# These two lines seems to help to prevent some weird random bug in nant.
# - Without them, nant fails to build boo sort of 'really often';
# - With them it seems to fail less.
# I (romain@) have not yet found a test condition that triggers the failure in
# a deterministic way. This is under investigation.
MAKE_ENV= LC_ALL=C
NANT_FLAGS+= -debug
PLIST_SUB+= PORTVERSION="2.${PORTVERSION:R}"
.if !defined(NOPORTDOCS)
PORTDOCS= *
.endif
.if !defined(NOPORTEXAMPLES)
PORTEXAMPLES= *
.endif
post-patch:
@${REINPLACE_CMD} \
-e 's!%%PREFIX%%!${PREFIX}!' \
-e 's!%%DOCSDIR%%!${DOCSDIR}!' \
-e 's!%%EXAMPLESDIR%%!${EXAMPLESDIR}!' \
${WRKSRC}/default.build
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -e 's/%%INSTALLDOCS%%//' ${WRKSRC}/default.build
.else
@${REINPLACE_CMD} -e 's/%%INSTALLDOCS%%/install-docs,/' ${WRKSRC}/default.build
.endif
.if defined(NOPORTEXAMPLES)
@${REINPLACE_CMD} -e 's/%%INSTALLEXAMPLES%%//' ${WRKSRC}/default.build
.else
@${REINPLACE_CMD} -e 's/%%INSTALLEXAMPLES%%/install-examples,/' ${WRKSRC}/default.build
.endif
post-install:
${LOCALBASE}/bin/update-mime-database ${LOCALBASE}/share/mime
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
.include <bsd.port.mk>