diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-04-14 21:15:01 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-04-14 21:15:01 +0000 |
commit | ebf2fd7dbc86b70243eadec6caad1006e298a6d5 (patch) | |
tree | 1af10ef7d20a24c1a87709a2854374e5f63d92e8 /meta-pkgs/XFree86 | |
parent | 207bf54a21e9ef949fb7f2fa783cac5d4d6137ef (diff) | |
download | pkgsrc-ebf2fd7dbc86b70243eadec6caad1006e298a6d5.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/XFree86')
-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) |