summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2002-07-21 19:26:53 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2002-07-21 19:26:53 +0000
commitc155b6a8ffd4a1d10845aae079d35d06853471fe (patch)
treebd04c80e05daad99d733867a4ab10712c4d2aa3e
parentFixed install on post-bsd.incs.mk systems by replacing the non-working (diff)
Fixed install on bsd.incs.mk aware systems.
Notes
Notes: svn path=/head/; revision=63331
-rw-r--r--games/libshhcards/files/Makefile.lib3
-rw-r--r--graphics/libfpx/files/Makefile.bsd3
-rw-r--r--graphics/libmng/files/Makefile.bsd3
-rw-r--r--japanese/libjconv/files/Makefile.lib3
-rw-r--r--textproc/expat/files/Makefile.lib3
5 files changed, 10 insertions, 5 deletions
diff --git a/games/libshhcards/files/Makefile.lib b/games/libshhcards/files/Makefile.lib
index 1b4a135d0c2b..05e563d82944 100644
--- a/games/libshhcards/files/Makefile.lib
+++ b/games/libshhcards/files/Makefile.lib
@@ -9,7 +9,8 @@ NOPROFILE= yes
NOOBJ= yes
INCS= shhcards.h
-INCDIR= ${PREFIX}/include
+INCSDIR=${PREFIX}/include
+INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API
CFLAGS+= -I${X11BASE}/include
diff --git a/graphics/libfpx/files/Makefile.bsd b/graphics/libfpx/files/Makefile.bsd
index 65446df0aa46..e0e1a639f8d5 100644
--- a/graphics/libfpx/files/Makefile.bsd
+++ b/graphics/libfpx/files/Makefile.bsd
@@ -4,7 +4,8 @@ SHLIB_MAJOR= 1
SHLIB_MINOR= 2
LIBDIR = ${LOCALBASE}/lib
-INCDIR = ${LOCALBASE}/include
+INCSDIR = ${LOCALBASE}/include
+INCDIR = ${INCSDIR} # for pre-bsd.incs.mk API
NOPROFILE= Don't want it
CFLAGS+= -DHAVE_WCHAR_H=1 -DHAVE_DLFCN_H=1 -Werror
diff --git a/graphics/libmng/files/Makefile.bsd b/graphics/libmng/files/Makefile.bsd
index 8ae5c6c6bd69..8acf4ea4f354 100644
--- a/graphics/libmng/files/Makefile.bsd
+++ b/graphics/libmng/files/Makefile.bsd
@@ -11,7 +11,8 @@ SRCS= ${LOBJS:.lo=.c}
CFLAGS+= -I${INCDIR} -DMNG_FULL_CMS
INCS= libmng.h libmng_conf.h libmng_types.h
-INCDIR= ${LOCALBASE}/include
+INCSDIR= ${LOCALBASE}/include
+INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API
LIBDIR= ${LOCALBASE}/lib
.include <bsd.lib.mk>
diff --git a/japanese/libjconv/files/Makefile.lib b/japanese/libjconv/files/Makefile.lib
index 536f45769fad..7879f5467e30 100644
--- a/japanese/libjconv/files/Makefile.lib
+++ b/japanese/libjconv/files/Makefile.lib
@@ -9,7 +9,8 @@ SRCS= conv.c info.c compat.c
INCS= jconv.h
NOMAN= YES
LIBDIR= ${LOCALBASE}/lib
-INCDIR= ${LOCALBASE}/include
+INCSDIR= ${LOCALBASE}/include
+INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API
ETCDIR= ${LOCALBASE}/etc
.include <bsd.lib.mk>
diff --git a/textproc/expat/files/Makefile.lib b/textproc/expat/files/Makefile.lib
index c4f283a70630..571fabbde180 100644
--- a/textproc/expat/files/Makefile.lib
+++ b/textproc/expat/files/Makefile.lib
@@ -18,7 +18,8 @@ SRCS= xmltok/xmltok.c \
INCS= xmlparse/xmlparse.h \
xmltok/xmltok.h
NOMAN= YES
-INCDIR= ${LOCALBASE}/include/xml
+INCSDIR= ${LOCALBASE}/include/xml
+INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API
LIBDIR= ${LOCALBASE}/lib
.include <bsd.lib.mk>