Sun Sep 18 16:47:44 2016 UTC ()
fix int types on SunOS


(wiedi)
diff -r1.37 -r1.38 pkgsrc/misc/blccc/Makefile

cvs diff -r1.37 -r1.38 pkgsrc/misc/blccc/Makefile (expand / switch to unified diff)

--- pkgsrc/misc/blccc/Makefile 2016/08/03 10:23:07 1.37
+++ pkgsrc/misc/blccc/Makefile 2016/09/18 16:47:44 1.38
@@ -1,32 +1,34 @@ @@ -1,32 +1,34 @@
1# $NetBSD: Makefile,v 1.37 2016/08/03 10:23:07 adam Exp $ 1# $NetBSD: Makefile,v 1.38 2016/09/18 16:47:44 wiedi Exp $
2# 2#
3 3
4DISTNAME= blccc-1.99 4DISTNAME= blccc-1.99
5PKGREVISION= 27 5PKGREVISION= 27
6CATEGORIES= misc 6CATEGORIES= misc
7MASTER_SITES= http://sven.gimp.org/blinkenlights/ 7MASTER_SITES= http://sven.gimp.org/blinkenlights/
8 8
9MAINTAINER= salo@NetBSD.org 9MAINTAINER= salo@NetBSD.org
10HOMEPAGE= http://www.blinkenlights.de/ 10HOMEPAGE= http://www.blinkenlights.de/
11COMMENT= Blinkenlights Chaos Control Center 11COMMENT= Blinkenlights Chaos Control Center
12 12
13USE_TOOLS+= pkg-config 13USE_TOOLS+= pkg-config
14USE_LIBTOOL= YES 14USE_LIBTOOL= YES
15GNU_CONFIGURE= YES 15GNU_CONFIGURE= YES
16SHLIBTOOL_OVERRIDE= # empty 16SHLIBTOOL_OVERRIDE= # empty
17 17
18EGDIR= ${PREFIX}/share/examples/blccc 18EGDIR= ${PREFIX}/share/examples/blccc
19 19
20INSTALLATION_DIRS= ${EGDIR}/movies ${EGDIR}/on-demand 20INSTALLATION_DIRS= ${EGDIR}/movies ${EGDIR}/on-demand
21 21
 22CPPFLAGS.SunOS+= -Du_int16_t=uint16_t -Du_int32_t=uint32_t
 23
22.include "../../devel/blib/buildlink3.mk" 24.include "../../devel/blib/buildlink3.mk"
23 25
24post-install: 26post-install:
25 for f in config.xml loveletters.xml playlist.default.xml \ 27 for f in config.xml loveletters.xml playlist.default.xml \
26 movies/bushfire-test.gif movies/bushfire_60frames.gif \ 28 movies/bushfire-test.gif movies/bushfire_60frames.gif \
27 movies/camel.blm movies/the_fly.blm on-demand/4467.blm; \ 29 movies/camel.blm movies/the_fly.blm on-demand/4467.blm; \
28 do \ 30 do \
29 ${INSTALL_DATA} ${WRKSRC}/examples/$${f} ${DESTDIR}${EGDIR}/$${f};\ 31 ${INSTALL_DATA} ${WRKSRC}/examples/$${f} ${DESTDIR}${EGDIR}/$${f};\
30 done 32 done
31 33
32.include "../../mk/bsd.pkg.mk" 34.include "../../mk/bsd.pkg.mk"