openbsd-ports/www/node/Makefile
jasper 888cb1b180 Zap zoom zoom (-O3)
prompted by zthen@
2011-04-29 07:41:15 +00:00

59 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.12 2011/04/29 07:41:15 jasper Exp $
# XXX:
# - Needs __ARM_NR_cacheflush (or the like) to work on arm-based ports.
# - Needs bundled libcares as arpa/nameser.h does not include ns_t_a.
ONLY_FOR_ARCHS= amd64 i386
COMMENT= V8 JavaScript for clients and servers
DISTNAME= node-v0.4.7
PKGNAME= ${DISTNAME:S/v//g}
REVISION= 0
CATEGORIES= www devel
HOMEPAGE= http://nodejs.org/
# MIT
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}/dist/
MODULES= lang/python
VMEM_WARNING= Yes
WANTLIB += c crypto execinfo ev kvm m pthread ssl stdc++ util
LIB_DEPENDS= devel/libev \
devel/libexecinfo
CONFIGURE_STYLE= simple
CONFIGURE_ARGS+= --shared-libev-libpath="${LOCALBASE}/lib" \
--shared-libev-include="${LOCALBASE}/include"
MODPY_ADJ_FILES=wscript \
tools/node-waf \
tools/waf-light
# These don't require complete rebuilds of the tree
REGRESS_TARGET= test-message test-simple test-pummel test-internet
SUBST_VARS+= CFLAGS
MAKE_ENV+= CXX=c++ CCFLAGS+="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
pre-configure:
${SUBST_CMD} ${WRKSRC}/wscript \
${WRKSRC}/Makefile \
${WRKSRC}/tools/wafadmin/Tools/python.py
# Bad practice, but prevents a whole stack of patches.
ln -sf ${LOCALBASE}/bin/python${MODPY_VERSION} ${WRKDIR}/bin/python
.include <bsd.port.mk>