diff options
author | jmmv <jmmv> | 2004-04-14 21:15:01 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2004-04-14 21:15:01 +0000 |
commit | 44997e9b1c2623c5d30ff039d6fe310c6b77e8d8 (patch) | |
tree | 1af10ef7d20a24c1a87709a2854374e5f63d92e8 /meta-pkgs | |
parent | a9b42d0abb3d6e9ac2966670d199082c6e910562 (diff) | |
download | pkgsrc-44997e9b1c2623c5d30ff039d6fe310c6b77e8d8.tar.gz |
Add support for the XFree86-dirs package in mk/dirs.mk, by modifying it to
work properly with it. Agreed with xtraeme@.
Diffstat (limited to 'meta-pkgs')
-rw-r--r-- | meta-pkgs/XFree86/Makefile.common | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/meta-pkgs/XFree86/Makefile.common b/meta-pkgs/XFree86/Makefile.common index 13e69363ec6..2e0d72f036b 100644 --- a/meta-pkgs/XFree86/Makefile.common +++ b/meta-pkgs/XFree86/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.6 2004/03/29 00:30:17 xtraeme Exp $ +# $NetBSD: Makefile.common,v 1.7 2004/04/14 21:15:01 jmmv Exp $ # # XBUILD_DIRS is the group of directories under ${WRKSRC} that will # be built in. @@ -17,6 +17,9 @@ # src-6 contains the documentation source. # src-7 contains the hardcopy documentation. +.if !defined(XFREE86_MAKEFILE_COMMON) +XFREE86_MAKEFILE_COMMON= # defined + .include "../../mk/bsd.prefs.mk" # @@ -95,6 +98,8 @@ MISCMAN_SUFFIX= ${MAN_SUFFIX} .endif # NetBSD +.if !defined(XFREE86_ONLY_DIRS) + PLIST_SUBST+= XTHRSTUB_MINOR=${XTHRSTUB_MINOR} PLIST_SUBST+= LIBXTHRSTUB=${LIBXTHRSTUB} PLIST_SUBST+= SHARED_LIB_MINOR=${SHARED_LIB_MINOR} @@ -250,3 +255,7 @@ do-install: . endif .endif # NO_XFREE86_TARGETS + +.endif # !defined(XFREE86_ONLY_DIRS) + +.endif # !defined(XFREE86_MAKEFILE_COMMON) |