diff options
author | jperkin <jperkin@pkgsrc.org> | 2012-09-27 10:06:28 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2012-09-27 10:06:28 +0000 |
commit | 5d4e5d38558fc600065590300c4c6a48318ad067 (patch) | |
tree | 0cf429b446cfdcb25626b32a66094561fb6e00ea /x11/xf86-video-sis | |
parent | 104bb31feec8dd2cbcf5d997748feb7109557c32 (diff) | |
download | pkgsrc-5d4e5d38558fc600065590300c4c6a48318ad067.tar.gz |
Define DRIVER_MAN_SUFFIX on Solaris to the same as every other system, this
diverges from the standard layout on Solaris but ensures a consistent
experience for pkgsrc packages.
Fixes 31 packages on Solaris.
Diffstat (limited to 'x11/xf86-video-sis')
-rw-r--r-- | x11/xf86-video-sis/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/x11/xf86-video-sis/Makefile b/x11/xf86-video-sis/Makefile index fd5d782a18d..d2d27e5ca81 100644 --- a/x11/xf86-video-sis/Makefile +++ b/x11/xf86-video-sis/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2012/06/15 23:06:07 dholland Exp $ +# $NetBSD: Makefile,v 1.13 2012/09/27 10:06:31 jperkin Exp $ # DISTNAME= xf86-video-sis-0.10.2 @@ -19,7 +19,8 @@ USE_LIBTOOL= yes GNU_CONFIGURE= yes USE_TOOLS+= pkg-config -.include "../../mk/compiler.mk" +.include "../../mk/bsd.prefs.mk" + .if !empty(PKGSRC_COMPILER:Mclang) BUILD_DEPENDS+= ucpp-[0-9]*:../../devel/ucpp CONFIGURE_ENV+= ac_cv_path_RAWCPP="${PREFIX}/bin/ucpp -t -c90 -Uunix" @@ -27,6 +28,10 @@ CONFIGURE_ENV+= ac_cv_path_RAWCPP="${PREFIX}/bin/ucpp -t -c90 -Uunix" CONFIGURE_ENV+= ac_cv_path_RAWCPP="cc -E -Uunix -" .endif +.if ${OPSYS} == "SunOS" +CONFIGURE_ENV+= DRIVER_MAN_SUFFIX=4 +.endif + .include "../../graphics/MesaLib/buildlink3.mk" .include "../../x11/modular-xorg-server/buildlink3.mk" .include "../../x11/randrproto/buildlink3.mk" |