pkgsrc/devel/libuv/Makefile
wiz 7ee29f0c5c Updated libuv to 1.11.0.
2017.02.02, Version 1.11.0 (Stable)

Changes since version 1.10.2:

* Now working on version 1.10.3 (cjihrig)

* win: added fcntl.h to uv-win.h (Michele Caini)

* unix: move function call out of assert (jBarz)

* fs: cleanup uv__fs_scandir (Santiago Gimeno)

* fs: fix crash in uv_fs_scandir_next (muflub)

* win,signal: fix potential deadlock (Bartosz Sosnowski)

* unix: use async-signal safe functions between fork and exec (jBarz)

* sunos: fix SUNOS_NO_IFADDRS build (Ben Noordhuis)

* zos: make platform functional (John Barboza)

* doc: add repitition qualifier to version regexs (Daniel Bevenius)

* zos: use gyp OS label "os390" on z/OS (John Barboza)

* aix: enable uv_get/set_process_title (Howard Hellyer)

* zos: use built-in proctitle implementation (John Barboza)

* Revert "darwin: use clock_gettime in macOS 10.12" (Chris Araman)

* win,test: don't write uninitialized buffer to tty (Bert Belder)

* win: define ERROR_ELEVATION_REQUIRED for MinGW (Richard Lau)

* aix: re-enable fs watch facility (Gireesh Punathil)
2017-02-07 12:59:33 +00:00

29 lines
731 B
Makefile

# $NetBSD: Makefile,v 1.13 2017/02/07 12:59:33 wiz Exp $
DISTNAME= libuv-1.11.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=libuv/}
MAINTAINER= agc@pkgsrc.org
HOMEPAGE= http://github.com/libuv/libuv/
COMMENT= Cross-platform asychronous I/O
LICENSE= mit AND 2-clause-bsd AND isc AND modified-bsd
GITHUB_TAG= v${PKGVERSION_NOREV}
USE_LIBTOOL= yes
USE_TOOLS+= autoconf automake pkg-config
GNU_CONFIGURE= yes
HEADERS= uv-aix.h uv-bsd.h uv-darwin.h uv-linux.h uv-sunos.h \
uv-unix.h uv-win.h pthread-barrier.h
pre-configure:
${RUN} cd ${WRKSRC} && ${SH} ./autogen.sh
post-install:
.for file in ${HEADERS}
${INSTALL_DATA} ${WRKSRC}/include/${file} ${DESTDIR}${PREFIX}/include
.endfor
.include "../../mk/bsd.pkg.mk"