summaryrefslogtreecommitdiff
path: root/devel/libuv/Makefile
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2013-03-02 08:19:36 +0000
committeragc <agc@pkgsrc.org>2013-03-02 08:19:36 +0000
commit887fb3d049d33f7c63c7764dffc9a00def3acb5f (patch)
tree2f5644d21701f6c17e81d7fcb4f5cc949e066719 /devel/libuv/Makefile
parent96122a67c529ac7b40dc21f69ed9e55c22df6948 (diff)
downloadpkgsrc-887fb3d049d33f7c63c7764dffc9a00def3acb5f.tar.gz
some private headers were missed during installation - add them
Diffstat (limited to 'devel/libuv/Makefile')
-rw-r--r--devel/libuv/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/libuv/Makefile b/devel/libuv/Makefile
index c2683e4edf7..715e8832478 100644
--- a/devel/libuv/Makefile
+++ b/devel/libuv/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2013/03/02 07:43:40 agc Exp $
+# $NetBSD: Makefile,v 1.2 2013/03/02 08:19:36 agc Exp $
#
DISTNAME= master
@@ -18,8 +18,14 @@ WRKSRC= ${WRKDIR}/libuv-master
USE_TOOLS+= gmake
AUTO_MKDIRS= yes
+HEADERS= ngx-queue.h stdint-msvc2008.h tree.h uv-bsd.h uv-darwin.h
+HEADERS+= uv-linux.h uv-sunos.h uv-unix.h uv-win.h
+
do-install:
${INSTALL_DATA} ${WRKSRC}/include/uv.h ${DESTDIR}${PREFIX}/include/uv.h
+ for f in ${HEADERS}; do \
+ ${INSTALL_DATA} ${WRKSRC}/include/uv-private/$$f ${DESTDIR}${PREFIX}/include/uv-private/$$f; \
+ done
${INSTALL_LIB} ${WRKSRC}/libuv.a ${DESTDIR}${PREFIX}/lib/libuv.a
.include "../../mk/bsd.pkg.mk"