nodejs: add build options to enable/disable shared dependencies

This commit is contained in:
Enno Boland 2015-05-12 10:35:37 +02:00
parent 8b114a0f8d
commit c802c085fa
1 changed files with 13 additions and 2 deletions

View File

@ -4,7 +4,9 @@ version=0.12.3
revision=1 revision=1
wrksrc=node-v${version} wrksrc=node-v${version}
hostmakedepends="pkg-config python" hostmakedepends="pkg-config python"
makedepends="libressl-devel zlib-devel python-devel libuv-devel" makedepends="zlib-devel python-devel
$(vopt_if ssl libressl-devel) $(vopt_if libuv libuv-devel)
$(vopt_if http_parser http-parser-devel)"
depends="python" depends="python"
short_desc="Evented I/O for V8 javascript" short_desc="Evented I/O for V8 javascript"
maintainer="Juan RP <xtraeme@voidlinux.eu>" maintainer="Juan RP <xtraeme@voidlinux.eu>"
@ -12,6 +14,12 @@ license="MIT"
homepage="http://nodejs.org/" homepage="http://nodejs.org/"
distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz" distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
checksum=e65d83c6f2c874e28f65c5e192ac0acd2bbb52bfcf9d77e33442d6765a3eb9da checksum=e65d83c6f2c874e28f65c5e192ac0acd2bbb52bfcf9d77e33442d6765a3eb9da
build_options="ssl libuv http_parser"
desc_option_libuv="Enable shared libuv"
desc_option_http_parser="Enable shared http-parser"
# shared http_parser broken
build_options_default="ssl libuv"
do_configure() { do_configure() {
local _args local _args
@ -23,7 +31,10 @@ do_configure() {
*) msg_error "$pkgver: cannot be cross compiled for ${XBPS_TARGET_MACHINE}\n" ;; *) msg_error "$pkgver: cannot be cross compiled for ${XBPS_TARGET_MACHINE}\n" ;;
esac esac
fi fi
./configure --prefix=/usr --openssl-use-sys --shared-zlib --shared-libuv ${_args} ./configure --prefix=/usr --shared-zlib \
$(vopt_if http_parser --shared-http-parser) \
$(vopt_if ssl --openssl-use-sys) \
$(vopt_if libuv --shared-libuv) ${_args}
} }
do_build() { do_build() {
if [ "$CROSS_BUILD" ]; then if [ "$CROSS_BUILD" ]; then