openbsd-ports/lang/boo/Makefile
jasper 2393868245 import boo 0.9.4
Boo is a new object oriented statically typed programming language for
the Common Language Infrastructure with a Python inspired sysntax and a
special focus on language and compiler extensibility.

from ryan boggs (MAINTAINER) with some tweaks by me
ok aja@
2011-10-06 12:43:32 +00:00

53 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2011/10/06 12:43:32 jasper Exp $
COMMENT = Python-like language for the .NET/Mono platform
PNAME = boo
V = 0.9.4
BUILD_NUM = 9
DISTNAME = ${PKGNAME}.${BUILD_NUM}
PKGNAME = ${PNAME}-${V}
CATEGORIES = lang
EXTRACT_SUFX = -src.zip
HOMEPAGE = http://boo.codehaus.org/
MAINTAINER = Ryan Boggs <rmboggs@gmail.com>
# MIT/BSD
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MASTER_SITES = http://dist.codehaus.org/boo/distributions/
MODULES = lang/mono
RUN_DEPENDS += misc/shared-mime-info \
x11/gtksourceview
DOCDIR = ${PREFIX}/share/doc/${PNAME}
EXAMPLEDIR = ${PREFIX}/share/examples/${PNAME}
WRKDIST = ${WRKDIR}
MODMONO_NANT = Yes
NANT_FLAGS = -D:install.prefix=${PREFIX} \
-D:fakeroot=${WRKINST} \
-D:skip.vs=true \
-D:skip.antlr=true
NO_REGRESS = Yes
post-install:
${INSTALL_DATA_DIR} ${DOCDIR} ${EXAMPLEDIR}
cp -Rp ${WRKDIST}/docs/* ${DOCDIR}
cp -Rp ${WRKDIST}/*.txt ${DOCDIR}
cp -Rp ${WRKDIST}/examples/* ${EXAMPLEDIR}
.include <bsd.port.mk>