diff options
author | joerg <joerg> | 2007-01-30 20:33:21 +0000 |
---|---|---|
committer | joerg <joerg> | 2007-01-30 20:33:21 +0000 |
commit | c5c3c4f6ad670da0796c8b3ffc8ca69c65bc10e3 (patch) | |
tree | d9a7523cbf609f29362f9212af3e2d908cfac058 | |
parent | 406dd6096cd1baf5c0cefc2d57bdac579de8ab44 (diff) | |
download | pkgsrc-c5c3c4f6ad670da0796c8b3ffc8ca69c65bc10e3.tar.gz |
Modular Xorg support.
-rw-r--r-- | x11/xpmicons/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/x11/xpmicons/Makefile b/x11/xpmicons/Makefile index d7a349ba7a2..a1725911815 100644 --- a/x11/xpmicons/Makefile +++ b/x11/xpmicons/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2006/11/10 16:49:58 tv Exp $ +# $NetBSD: Makefile,v 1.16 2007/01/30 20:33:21 joerg Exp $ DISTNAME= xpmicons-1.0 PKGREVISION= 4 @@ -24,9 +24,9 @@ NO_BUILD= yes INSTALLATION_DIRS= include/X11/bitmaps include/X11/pixmaps -.include "../../mk/x11.buildlink3.mk" +.include "../../mk/bsd.prefs.mk" -.if ${X11_TYPE} != "xorg" +.if ${X11_TYPE} != "xorg" && ${X11_TYPE} != "modular" PLIST_SRC+= PLIST.icons .endif @@ -39,4 +39,5 @@ do-install: find ${WRKSRC} -name \*.xbm -print | \ while read f; do ${INSTALL_DATA} $$f ${PREFIX}/include/X11/bitmaps; done +#.include "../../mk/x11.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |