summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--graphics/libflash/files/Makefile15
-rw-r--r--textproc/expat/Makefile1
-rw-r--r--textproc/expat/files/Makefile.lib20
3 files changed, 35 insertions, 1 deletions
diff --git a/graphics/libflash/files/Makefile b/graphics/libflash/files/Makefile
index 7d6b4df5eb29..58e8037fbdbc 100644
--- a/graphics/libflash/files/Makefile
+++ b/graphics/libflash/files/Makefile
@@ -19,3 +19,18 @@ LIBDIR= ${LOCALBASE}/lib
INCDIR= ${LOCALBASE}/include
.include <bsd.lib.mk>
+
+# For FreeBSD 3.x or older
+.if !target(_includeinstall)
+_includeinstall:
+.if defined(INCS)
+.for header in ${INCS}
+ cd ${.CURDIR} && \
+ ${INSTALL} -C -o ${INCOWN} -g ${INCGRP} -m ${INCMODE} \
+ ${header} ${DESTDIR}${INCDIR}
+
+.endfor
+.endif
+
+beforeinstall: _includeinstall
+.endif
diff --git a/textproc/expat/Makefile b/textproc/expat/Makefile
index 12d106740b87..9a9b3a207912 100644
--- a/textproc/expat/Makefile
+++ b/textproc/expat/Makefile
@@ -30,7 +30,6 @@ do-build:
.endfor
do-install:
- ${MKDIR} ${PREFIX}/include/xml
.for f in ${MAKEFILES}
@(cd ${WRKSRC}; \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${f} ${MAKE_ARGS} ${INSTALL_TARGET})
diff --git a/textproc/expat/files/Makefile.lib b/textproc/expat/files/Makefile.lib
index b3a0f177cd35..c4f283a70630 100644
--- a/textproc/expat/files/Makefile.lib
+++ b/textproc/expat/files/Makefile.lib
@@ -22,3 +22,23 @@ INCDIR= ${LOCALBASE}/include/xml
LIBDIR= ${LOCALBASE}/lib
.include <bsd.lib.mk>
+
+# For FreeBSD 3.x or older
+.if !target(_includeinstall)
+_includeinstall:
+.if defined(INCS)
+.for header in ${INCS}
+ cd ${.CURDIR} && \
+ ${INSTALL} -C -o ${INCOWN} -g ${INCGRP} -m ${INCMODE} \
+ ${header} ${DESTDIR}${INCDIR}
+
+.endfor
+.endif
+
+beforeinstall: _includeinstall
+.endif
+
+_includeinstall: pre-_includeinstall
+
+pre-_includeinstall:
+ mkdir -p ${INCDIR}